]> git.eshelyaron.com Git - emacs.git/commitdiff
Condition em-cmpl's setting of pcomplete-suffix-list
authorGlenn Morris <rgm@gnu.org>
Tue, 6 Mar 2018 20:10:49 +0000 (15:10 -0500)
committerGlenn Morris <rgm@gnu.org>
Tue, 6 Mar 2018 20:10:49 +0000 (15:10 -0500)
* lisp/eshell/em-cmpl.el (eshell-cmpl-initialize):
Only set pcomplete-suffix-list if it is defined.

lisp/eshell/em-cmpl.el

index 667bdeb43b416a5737cef706d4dade04321c80d8..fe34d9546a69da37c3d0c4b0f4a29c4a192b4afe 100644 (file)
@@ -259,8 +259,9 @@ to writing a completion function."
        eshell-cmpl-ignore-case)
   (set (make-local-variable 'pcomplete-autolist)
        eshell-cmpl-autolist)
-  (set (make-local-variable 'pcomplete-suffix-list)
-       eshell-cmpl-suffix-list)
+  (if (boundp 'pcomplete-suffix-list)
+      (set (make-local-variable 'pcomplete-suffix-list)
+           eshell-cmpl-suffix-list))
   (set (make-local-variable 'pcomplete-recexact)
        eshell-cmpl-recexact)
   (set (make-local-variable 'pcomplete-man-function)