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
0e250bf8
Commit
0e250bf8
authored
Dec 09, 2007
by
David Kastrup
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(lm-verify): Make it work with
directories. Not sure anybody uses this anymore, though.
parent
316be4e8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
12 deletions
+16
-12
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/emacs-lisp/lisp-mnt.el
lisp/emacs-lisp/lisp-mnt.el
+11
-12
No files found.
lisp/ChangeLog
View file @
0e250bf8
2007-12-09 David Kastrup <dak@gnu.org>
* emacs-lisp/lisp-mnt.el (lm-verify): Make it work with
directories. Not sure anybody uses this anymore, though.
2007-12-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
* printing.el: Fix pr-interface-map initialization. Replace
...
...
lisp/emacs-lisp/lisp-mnt.el
View file @
0e250bf8
...
...
@@ -511,18 +511,17 @@ copyright notice is allowed."
(
if
(
and
file
(
file-directory-p
file
))
(
setq
ret
(
with-temp-buffer
(
mapcar
(
lambda
(
f
)
(
if
(
string-match
".*\\.el\\'"
f
)
(
let
((
status
(
lm-verify
f
)))
(
insert
f
":"
)
(
if
status
(
lm-insert-at-column
lm-comment-column
status
"\n"
)
(
if
showok
(
lm-insert-at-column
lm-comment-column
"OK\n"
))))))
(
directory-files
file
))))
(
dolist
(
f
(
directory-files
file
nil
"\\.el\\'"
)
(
buffer-string
))
(
when
(
file-regular-p
f
)
(
let
((
status
(
lm-verify
f
)))
(
insert
f
":"
)
(
if
status
(
lm-insert-at-column
lm-comment-column
status
"\n"
)
(
if
showok
(
lm-insert-at-column
lm-comment-column
"OK\n"
))))))))
(
lm-with-file
file
(
setq
name
(
lm-get-package-name
))
(
setq
ret
...
...
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