diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2023-08-05 18:18:30 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2023-08-05 18:18:30 +0200 |
commit | 479c0543b68746977cf74414d5348a918f8c6695 (patch) | |
tree | b96e4222e52394531f8965e74f17681bc0ffabb1 /lisp/emacs-lisp | |
parent | 8e20da1517aa585e6286fa8e439db10fb62aaa57 (diff) | |
parent | f2b2c752a5920c1152fd70d917e0fc5a3c9728c4 (diff) | |
download | emacs-479c0543b68746977cf74414d5348a918f8c6695.tar.gz emacs-479c0543b68746977cf74414d5348a918f8c6695.tar.bz2 emacs-479c0543b68746977cf74414d5348a918f8c6695.zip |
Merge from origin/emacs-29
f2b2c752a59 Fix documentation of saveplace facilities for Dired
4ed9d61c89a ; * lisp/tab-bar.el: Autoload cl--set-substring, as that ...
30976ecd8d8 ; * lisp/bindings.el (mode-line-modes): Fix typo (bug#650...
8574ef314c4 Fix loaddef generation with ";;;foo-autoload" cookies in ...
8cbd4a02a2b Delete comment saying that project.el is experimental
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/loaddefs-gen.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/loaddefs-gen.el b/lisp/emacs-lisp/loaddefs-gen.el index 5db9af21508..d7b9b131bc8 100644 --- a/lisp/emacs-lisp/loaddefs-gen.el +++ b/lisp/emacs-lisp/loaddefs-gen.el @@ -431,7 +431,8 @@ don't include." ;; have an autoload cookie on the first column of a ;; doc string or the like. (The Emacs tree ;; shouldn't contain any such instances.) - (not (ppss-string-terminator (syntax-ppss)))) + (not (ppss-string-terminator + (save-match-data (syntax-ppss))))) ;; ... and if we have one of these names, then alter outfile. (let* ((aname (match-string 2)) (to-file (if aname |