Show
Ignore:
Timestamp:
04/07/07 15:49:28 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp/erc/erc-pcomplete.el

    r4190 r4200  
    181181 
    182182(defun pcomplete/erc-mode/UNIGNORE () 
    183   (pcomplete-here (with-current-buffer (erc-server-buffer) erc-ignore-list))) 
     183  (pcomplete-here (erc-with-server-buffer erc-ignore-list))) 
    184184 
    185185;;; Functions that provide possible completions. 
     
    234234  "Returns a list of all nicks on the current server." 
    235235  (let (nicks) 
    236     (with-current-buffer (process-buffer erc-server-process) 
     236    (erc-with-server-buffer 
    237237      (maphash (lambda (nick user) 
    238238                 (setq nicks (cons (concat nick postfix) nicks)))