1
0
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:
Eli Zaretskii 2002-08-19 17:24:08 +00:00
parent ab1959fcba
commit 100c44b777
2 changed files with 9 additions and 0 deletions

View File

@ -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

View File

@ -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;