diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/callproc.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 304176a40eb..afe3e6db046 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2010-11-18 Dan Nicolaescu <dann@ics.uci.edu> | 1 | 2010-11-18 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 2 | ||
| 3 | * callproc.c (syms_of_callproc): Use intern_c_string. | ||
| 4 | |||
| 3 | Move declarations from .c files to .h files. | 5 | Move declarations from .c files to .h files. |
| 4 | * process.c (timers_run): | 6 | * process.c (timers_run): |
| 5 | * minibuf.c (quit_char): | 7 | * minibuf.c (quit_char): |
diff --git a/src/callproc.c b/src/callproc.c index ef086020e71..59067040fd9 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -1516,7 +1516,7 @@ void | |||
| 1516 | syms_of_callproc (void) | 1516 | syms_of_callproc (void) |
| 1517 | { | 1517 | { |
| 1518 | #ifdef DOS_NT | 1518 | #ifdef DOS_NT |
| 1519 | Qbuffer_file_type = intern ("buffer-file-type"); | 1519 | Qbuffer_file_type = intern_c_string ("buffer-file-type"); |
| 1520 | staticpro (&Qbuffer_file_type); | 1520 | staticpro (&Qbuffer_file_type); |
| 1521 | #endif /* DOS_NT */ | 1521 | #endif /* DOS_NT */ |
| 1522 | 1522 | ||