Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
11be40a6
Commit
11be40a6
authored
Oct 07, 2009
by
Eli Zaretskii
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(batch-update-autoloads): Fix last change to not error out of search
for "^lisp=" fails.
parent
8c4afe20
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/emacs-lisp/autoload.el
lisp/emacs-lisp/autoload.el
+1
-1
No files found.
lisp/ChangeLog
View file @
11be40a6
2009-10-07 Eli Zaretskii <eliz@gnu.org>
* emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
to not error out of search for "^lisp=" fails.
2009-10-07 Juanma Barranquero <lekktu@gmail.com>
* makefile.w32-in (WINS_UPDATES): New macro.
...
...
lisp/emacs-lisp/autoload.el
View file @
11be40a6
...
...
@@ -691,7 +691,7 @@ Calls `update-directory-autoloads' on the command line arguments."
(when (file-readable-p mfile)
(with-temp-buffer
(insert-file-contents mfile)
(when (re-search-forward "
^lisp=
")
(when (re-search-forward "
^lisp=
"
nil t
)
(setq lim (line-end-position))
(while (re-search-forward "
\\${lispsource}\\
(
[^
]*\\
)
\\.elc?
" lim t)
(push (concat (expand-file-name (match-string 1) ldir) "
.
el
"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment