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
Open sidebar
emacs
emacs
Commits
fa05bfe0
Commit
fa05bfe0
authored
Sep 09, 2012
by
Glenn Morris
Browse files
* mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
parent
48e8c8aa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/mail/emacsbug.el
lisp/mail/emacsbug.el
+8
-3
No files found.
lisp/ChangeLog
View file @
fa05bfe0
2012-09-10 Glenn Morris <rgm@gnu.org>
* mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
2012-09-08 Alan Mackenzie <acm@muc.de>
AWK Mode: make auto-newline work when there's "==" in the pattern.
...
...
lisp/mail/emacsbug.el
View file @
fa05bfe0
...
...
@@ -304,9 +304,14 @@ usually do not have translators for other languages.\n\n")))
(
insert
"\n"
))
(
insert
"\n"
)
(
insert
"Load-path shadows:\n"
)
(
message
"Checking for load-path shadows..."
)
(
let
((
shadows
(
list-load-path-shadows
t
)))
(
message
"Checking for load-path shadows...done"
)
(
let*
((
msg
"Checking for load-path shadows..."
)
(
result
"done"
)
(
shadows
(
progn
(
message
"%s"
msg
)
(
condition-case
nil
(
list-load-path-shadows
t
)
(
error
(
setq
result
"error"
)
"Error during checking"
)))))
(
message
"%s%s"
msg
result
)
(
insert
(
if
(
zerop
(
length
shadows
))
"None found.\n"
shadows
)))
...
...
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