From: Glenn Morris Date: Sat, 1 Jun 2013 18:00:14 +0000 (-0700) Subject: * eshell/em-cmpl.el (eshell-cmpl-initialize): Replace obsolete alias X-Git-Url: https://git.hcoop.net/bpt/emacs.git/commitdiff_plain/d870df218e755a7c6445c9aa01e09d1f3a00c6be * eshell/em-cmpl.el (eshell-cmpl-initialize): Replace obsolete alias --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1743e8b64c..85430128e9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2013-06-01 Glenn Morris + + * eshell/em-cmpl.el (eshell-cmpl-initialize): + Replace the obsolete alias pcomplete-arg-quote-list. + 2013-06-01 Leo Liu * progmodes/octave.el (octave-mode-syntax-table): Give `.' diff --git a/lisp/eshell/em-cmpl.el b/lisp/eshell/em-cmpl.el index 4b952e0ee3..7120f639a7 100644 --- a/lisp/eshell/em-cmpl.el +++ b/lisp/eshell/em-cmpl.el @@ -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)