diff options
author | John Wiegley <johnw@newartisans.com> | 2001-01-26 06:19:25 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2001-01-26 06:19:25 +0000 |
commit | 219227ead0447814c838935b8d5d06fd2095546d (patch) | |
tree | 9501e9229c038e8a88bc0eefaa96ea8c8dc2f8b9 /lisp/pcomplete.el | |
parent | 8844fa83d302c082faf9976fa3253709afda0d2c (diff) | |
download | emacs-219227ead0447814c838935b8d5d06fd2095546d.tar.gz |
See ChangeLog
Diffstat (limited to 'lisp/pcomplete.el')
-rw-r--r-- | lisp/pcomplete.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/pcomplete.el b/lisp/pcomplete.el index 47c52061c27..0ef1cbd05c7 100644 --- a/lisp/pcomplete.el +++ b/lisp/pcomplete.el @@ -1,6 +1,6 @@ ;;; pcomplete --- programmable completion -;; Copyright (C) 1999, 2000 Free Sofware Foundation +;; Copyright (C) 1999, 2000, 2001 Free Sofware Foundation ;; Author: John Wiegley <johnw@gnu.org> ;; Keywords: processes abbrev @@ -131,12 +131,12 @@ (defcustom pcomplete-file-ignore nil "*A regexp of filenames to be disregarded during file completion." - :type 'regexp + :type '(choice regexp (const :tag "None" nil)) :group 'pcomplete) (defcustom pcomplete-dir-ignore nil "*A regexp of names to be disregarded during directory completion." - :type 'regexp + :type '(choice regexp (const :tag "None" nil)) :group 'pcomplete) (defcustom pcomplete-ignore-case (memq system-type '(ms-dos windows-nt)) |