]> git.eshelyaron.com Git - emacs.git/commitdiff
(PC-look-for-include-file): Use :alnum: character class.
authorDave Love <fx@gnu.org>
Mon, 22 May 2000 19:14:50 +0000 (19:14 +0000)
committerDave Love <fx@gnu.org>
Mon, 22 May 2000 19:14:50 +0000 (19:14 +0000)
(partial-completion-mode): Add autoload cookie.

lisp/complete.el

index 5b77c72ff0176bf8a01abc1ab5bed98364ffd293..1bf418ed5474223e2d0a90559acf612d0bda8be5 100644 (file)
@@ -97,6 +97,7 @@
   :group 'minibuffer
   :group 'convenience)
 
+;;;###autoload
 (defcustom partial-completion-mode nil
   "Toggle Partial Completion mode.
 When Partial Completion mode is enabled, TAB (or M-TAB if `PC-meta-flag' is
@@ -829,7 +830,7 @@ or properties are considered."
                          (or (string-match "\\.el$" name)
                              (setq name (concat name ".el")))))
                    (error "Not on an #include line"))))))
-       (or (string-match "\\.[a-zA-Z0-9]+$" name)
+       (or (string-match "\\.[[:alnum:]]+$" name)
            (setq name (concat name ".h")))
        (if (eq punc ?\<)
            (let ((path (or path (PC-include-file-path))))