diff options
| author | Paul Eggert | 2011-03-14 19:48:24 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-03-14 19:48:24 -0700 |
| commit | fd4ead52062abcb8d8356595708229d83021f042 (patch) | |
| tree | 3c63a02ac35289c9c0d1d5aa5942282dea873bed /src | |
| parent | 2893f1463d31f84556a78b1a714f2427064caf78 (diff) | |
| download | emacs-fd4ead52062abcb8d8356595708229d83021f042.tar.gz emacs-fd4ead52062abcb8d8356595708229d83021f042.zip | |
* fileio.c (Fmake_directory_internal, Fread_file_name): Remove unused vars.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/fileio.c | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9393cec02a9..567fe22a941 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -6,6 +6,7 @@ | |||
| 6 | (file_name_as_directory): Use const pointers when appropriate. | 6 | (file_name_as_directory): Use const pointers when appropriate. |
| 7 | (Fexpand_file_name): Likewise. In particular, newdir might | 7 | (Fexpand_file_name): Likewise. In particular, newdir might |
| 8 | point at constant storage, so make it a const pointer. | 8 | point at constant storage, so make it a const pointer. |
| 9 | (Fmake_directory_internal, Fread_file_name): Remove unused vars. | ||
| 9 | 10 | ||
| 10 | * minibuf.c (choose_minibuf_frame_1): Now static. | 11 | * minibuf.c (choose_minibuf_frame_1): Now static. |
| 11 | (Ftry_completion, Fall_completions): Rename or remove locals | 12 | (Ftry_completion, Fall_completions): Rename or remove locals |
diff --git a/src/fileio.c b/src/fileio.c index 4b25d08f20d..b99311445b3 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -2045,7 +2045,6 @@ DEFUN ("delete-directory-internal", Fdelete_directory_internal, | |||
| 2045 | (Lisp_Object directory) | 2045 | (Lisp_Object directory) |
| 2046 | { | 2046 | { |
| 2047 | const char *dir; | 2047 | const char *dir; |
| 2048 | Lisp_Object handler; | ||
| 2049 | Lisp_Object encoded_dir; | 2048 | Lisp_Object encoded_dir; |
| 2050 | 2049 | ||
| 2051 | CHECK_STRING (directory); | 2050 | CHECK_STRING (directory); |
| @@ -5430,7 +5429,7 @@ before any other event (mouse or keypress) is handled. */) | |||
| 5430 | Lisp_Object | 5429 | Lisp_Object |
| 5431 | Fread_file_name (Lisp_Object prompt, Lisp_Object dir, Lisp_Object default_filename, Lisp_Object mustmatch, Lisp_Object initial, Lisp_Object predicate) | 5430 | Fread_file_name (Lisp_Object prompt, Lisp_Object dir, Lisp_Object default_filename, Lisp_Object mustmatch, Lisp_Object initial, Lisp_Object predicate) |
| 5432 | { | 5431 | { |
| 5433 | struct gcpro gcpro1, gcpro2; | 5432 | struct gcpro gcpro1; |
| 5434 | Lisp_Object args[7]; | 5433 | Lisp_Object args[7]; |
| 5435 | 5434 | ||
| 5436 | GCPRO1 (default_filename); | 5435 | GCPRO1 (default_filename); |