emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-26 96f055b: Fix a typo in autoload.el


From: Eli Zaretskii
Subject: [Emacs-diffs] emacs-26 96f055b: Fix a typo in autoload.el
Date: Thu, 1 Nov 2018 14:57:33 -0400 (EDT)

branch: emacs-26
commit 96f055bb4b89af240d7151185d8759e9b26d4fdc
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Fix a typo in autoload.el
    
    * lisp/emacs-lisp/autoload.el (update-directory-autoloads):
    Remove stray backslashes.  (Bug#33231)
---
 lisp/emacs-lisp/autoload.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el
index 92ad615..a0ca044 100644
--- a/lisp/emacs-lisp/autoload.el
+++ b/lisp/emacs-lisp/autoload.el
@@ -1034,7 +1034,7 @@ write its autoloads into the specified file instead."
                        ;; we don't want to depend on whether Emacs was
                        ;; built with or without modules support, nor
                        ;; what is the suffix for the underlying OS.
-                      (unless (string-match "\\.\\(elc\\|\\so\\|dll\\)" suf)
+                      (unless (string-match "\\.\\(elc\\|so\\|dll\\)" suf)
                          (push suf tmp)))
                      (concat "^[^=.].*" (regexp-opt tmp t) "\\'")))
         (files (apply #'nconc



reply via email to

[Prev in Thread] Current Thread [Next in Thread]