]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't register "def" as an autoload prefix (Bug#26412)
authorNoam Postavsky <npostavs@gmail.com>
Thu, 20 Apr 2017 03:01:43 +0000 (23:01 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Thu, 20 Apr 2017 03:11:44 +0000 (23:11 -0400)
* lisp/emacs-lisp/autoload.el (autoload--make-defs-autoload): Don't
accept "def" as a prefix.

lisp/emacs-lisp/autoload.el

index 90e6aec4e75ddd4d136ff682d14712e380193474..ca46f31767798d36f41e9ec1b937a94e357db59a 100644 (file)
@@ -547,7 +547,9 @@ Don't try to split prefixes that are already longer than that.")
     ;; "cc-helper" and "c-mode", you'll get "c" in the root prefixes.
     (dolist (pair (prog1 prefixes (setq prefixes nil)))
       (let ((s (car pair)))
-        (if (or (> (length s) 2)                  ;Long enough!
+        (if (or (and (> (length s) 2)   ; Long enough!
+                     ;; But don't use "def" from deffoo-pkg-thing.
+                     (not (string= "def" s)))
                 (string-match ".[[:punct:]]\\'" s) ;A real (tho short) prefix?
                 (radix-tree-lookup (cdr pair) "")) ;Nothing to expand!
             (push pair prefixes) ;Keep it as is.