Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
ab2baced
Commit
ab2baced
authored
Oct 07, 2009
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(batch-update-autoloads): Remove useless use of concat.
parent
09094f28
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/emacs-lisp/autoload.el
lisp/emacs-lisp/autoload.el
+3
-2
No files found.
lisp/ChangeLog
View file @
ab2baced
2009-10-07 Glenn Morris <rgm@gnu.org>
* emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use of
concat.
2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
* files-x.el (read-file-local-variable): Include some
...
...
lisp/emacs-lisp/autoload.el
View file @
ab2baced
...
...
@@ -693,8 +693,9 @@ Calls `update-directory-autoloads' on the command line arguments."
(insert-file-contents mfile)
(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
"
)
(while (re-search-forward "
\\${lispsource}\\
(
[^
]+\\.el\\
)
c?\\>
"
lim
t
)
(
push
(
expand-file-name
(
match-string
1
)
ldir
)
autoload-excludes
)
))))))
(
let
((
args
command-line-args-left
))
(
setq
command-line-args-left
nil
)
...
...
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