diff options
| author | Paul Eggert | 2011-03-14 20:59:26 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-03-14 20:59:26 -0700 |
| commit | 4a6bea268fbac2fd64018374652f5b2c9b04b4fd (patch) | |
| tree | 8b42cc663ff79d18960297827ae687bae8506428 | |
| parent | f839df0cf5882909c0f6424455abed586f125987 (diff) | |
| download | emacs-4a6bea268fbac2fd64018374652f5b2c9b04b4fd.tar.gz emacs-4a6bea268fbac2fd64018374652f5b2c9b04b4fd.zip | |
* dired.c (directory_files_internal_unwind): Now static.
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/dired.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index c84c2397810..7468af4c725 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2011-03-15 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-03-15 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * dired.c (directory_files_internal_unwind): Now static. | ||
| 4 | |||
| 3 | * fileio.c (file_name_as_directory, directory_file_name): | 5 | * fileio.c (file_name_as_directory, directory_file_name): |
| 4 | (barf_or_query_if_file_exists, auto_save_error, auto_save_1): | 6 | (barf_or_query_if_file_exists, auto_save_error, auto_save_1): |
| 5 | Now static. | 7 | Now static. |
diff --git a/src/dired.c b/src/dired.c index d201418d78b..7891fc5f4a1 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -102,7 +102,7 @@ directory_files_internal_w32_unwind (Lisp_Object arg) | |||
| 102 | } | 102 | } |
| 103 | #endif | 103 | #endif |
| 104 | 104 | ||
| 105 | Lisp_Object | 105 | static Lisp_Object |
| 106 | directory_files_internal_unwind (Lisp_Object dh) | 106 | directory_files_internal_unwind (Lisp_Object dh) |
| 107 | { | 107 | { |
| 108 | DIR *d = (DIR *) XSAVE_VALUE (dh)->pointer; | 108 | DIR *d = (DIR *) XSAVE_VALUE (dh)->pointer; |