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
18a4a65e
Commit
18a4a65e
authored
Sep 11, 2007
by
Stefan Monnier
Browse files
(load_warn_old_style_backquotes): Change message to look
better when it appears in the middle of byte-compiler messages.
parent
b7ea0894
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/lread.c
src/lread.c
+1
-1
No files found.
src/ChangeLog
View file @
18a4a65e
2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
* lread.c (load_warn_old_style_backquotes): Change message to look
better when it appears in the middle of byte-compiler messages.
2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
* s/darwin.h (MULTI_KBOARD): Only define for Carbon.
src/lread.c
View file @
18a4a65e
...
...
@@ -708,7 +708,7 @@ load_warn_old_style_backquotes (file)
if
(
!
NILP
(
Vold_style_backquotes
))
{
Lisp_Object
args
[
2
];
args
[
0
]
=
build_string
(
"
!! File %s uses
old-style backquotes
!
!"
);
args
[
0
]
=
build_string
(
"
Loading `%s':
old-style backquotes
detected
!"
);
args
[
1
]
=
file
;
Fmessage
(
2
,
args
);
}
...
...
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