mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-08 15:35:02 +00:00
(Ffile_name_directory) [DOS_NT]: Don't declare `beg'
`const' since CORRECT_DIR_SEPS modifies its target.
This commit is contained in:
parent
ab1959fcba
commit
100c44b777
@ -1,3 +1,8 @@
|
||||
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
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user