* eshell/em-cmpl.el (eshell-cmpl-initialize): Replace obsolete alias
authorGlenn Morris <rgm@gnu.org>
Sat, 1 Jun 2013 18:00:14 +0000 (11:00 -0700)
committerGlenn Morris <rgm@gnu.org>
Sat, 1 Jun 2013 18:00:14 +0000 (11:00 -0700)
lisp/ChangeLog
lisp/eshell/em-cmpl.el

index 1743e8b..8543012 100644 (file)
@@ -1,3 +1,8 @@
+2013-06-01  Glenn Morris  <rgm@gnu.org>
+
+       * eshell/em-cmpl.el (eshell-cmpl-initialize):
+       Replace the obsolete alias pcomplete-arg-quote-list.
+
 2013-06-01  Leo Liu  <sdl.web@gmail.com>
 
        * progmodes/octave.el (octave-mode-syntax-table): Give `.'
index 4b952e0..7120f63 100644 (file)
@@ -285,13 +285,13 @@ to writing a completion function."
        eshell-cmpl-restore-window-delay)
   (set (make-local-variable 'pcomplete-use-paring)
        eshell-cmpl-use-paring)
-  ;; `pcomplete-arg-quote-list' should only be set after all the
+  ;; `comint-file-name-quote-list' should only be set after all the
   ;; load-hooks for any other extension modules have been run, which
   ;; is true at the time `eshell-mode-hook' is run
   (add-hook 'eshell-mode-hook
            (function
             (lambda ()
-              (set (make-local-variable 'pcomplete-arg-quote-list)
+              (set (make-local-variable 'comint-file-name-quote-list)
                    eshell-special-chars-outside-quoting))) nil t)
   (add-hook 'pcomplete-quote-arg-hook 'eshell-quote-backslash nil t)
   (define-key eshell-mode-map [(meta tab)] 'eshell-complete-lisp-symbol)