Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b636b4c1
Commit
b636b4c1
authored
Aug 23, 2007
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(load_warn_old_style_backquotes): Fix up array size typo.
parent
5ebfbcdc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
src/ChangeLog
src/ChangeLog
+4
-0
src/lread.c
src/lread.c
+2
-2
No files found.
src/ChangeLog
View file @
b636b4c1
2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
* lread.c (load_warn_old_style_backquotes): Fix up array size typo.
2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
* lread.c (Qold_style_backquotes): New var.
...
...
src/lread.c
View file @
b636b4c1
...
...
@@ -705,8 +705,8 @@ load_warn_old_style_backquotes (file)
{
if
(
!
NILP
(
Vold_style_backquotes
))
{
Lisp_Object
args
[
1
];
args
[
0
]
=
build_string
(
"!! File %s uses old-style backquotes !!"
);
Lisp_Object
args
[
2
];
b
args
[
0
]
=
build_string
(
"!! File %s uses old-style backquotes !!"
);
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