Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
100c44b7
Commit
100c44b7
authored
Aug 19, 2002
by
Eli Zaretskii
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Ffile_name_directory) [DOS_NT]: Don't declare `beg'
`const' since CORRECT_DIR_SEPS modifies its target.
parent
ab1959fc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
src/ChangeLog
src/ChangeLog
+5
-0
src/fileio.c
src/fileio.c
+4
-0
No files found.
src/ChangeLog
View file @
100c44b7
2002-08-19 Eli Zaretskii <eliz@is.elta.co.il>
* fileio.c (Ffile_name_directory) [DOS_NT]: Don't declare `beg'
`const' since CORRECT_DIR_SEPS modifies its target.
2002-08-19 Kim F. Storm <storm@cua.dk>
* keyboard.c (Fclear_this_command_keys): Added optional arg
...
...
src/fileio.c
View file @
100c44b7
...
...
@@ -393,7 +393,11 @@ on VMS, perhaps instead a string ending in `:', `]' or `>'. */)
(
filename
)
Lisp_Object
filename
;
{
#ifndef DOS_NT
register
const
unsigned
char
*
beg
;
#else
register
unsigned
char
*
beg
;
#endif
register
const
unsigned
char
*
p
;
Lisp_Object
handler
;
...
...
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