diff lisp/pcomplete.el @ 35588:31904bdf4350

See ChangeLog
author John Wiegley <johnw@newartisans.com>
date Fri, 26 Jan 2001 06:19:25 +0000
parents de05ca05f4ff
children b174db545cfd
line wrap: on
line diff
--- a/lisp/pcomplete.el	Fri Jan 26 06:10:21 2001 +0000
+++ b/lisp/pcomplete.el	Fri Jan 26 06:19:25 2001 +0000
@@ -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))