Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
fd4ead52
Commit
fd4ead52
authored
Mar 14, 2011
by
Paul Eggert
Browse files
* fileio.c (Fmake_directory_internal, Fread_file_name): Remove unused vars.
parent
2893f146
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/ChangeLog
src/ChangeLog
+1
-0
src/fileio.c
src/fileio.c
+1
-2
No files found.
src/ChangeLog
View file @
fd4ead52
...
...
@@ -6,6 +6,7 @@
(file_name_as_directory): Use const pointers when appropriate.
(Fexpand_file_name): Likewise. In particular, newdir might
point at constant storage, so make it a const pointer.
(Fmake_directory_internal, Fread_file_name): Remove unused vars.
* minibuf.c (choose_minibuf_frame_1): Now static.
(Ftry_completion, Fall_completions): Rename or remove locals
src/fileio.c
View file @
fd4ead52
...
...
@@ -2045,7 +2045,6 @@ DEFUN ("delete-directory-internal", Fdelete_directory_internal,
(
Lisp_Object
directory
)
{
const
char
*
dir
;
Lisp_Object
handler
;
Lisp_Object
encoded_dir
;
CHECK_STRING
(
directory
);
...
...
@@ -5430,7 +5429,7 @@ before any other event (mouse or keypress) is handled. */)
Lisp_Object
Fread_file_name
(
Lisp_Object
prompt
,
Lisp_Object
dir
,
Lisp_Object
default_filename
,
Lisp_Object
mustmatch
,
Lisp_Object
initial
,
Lisp_Object
predicate
)
{
struct
gcpro
gcpro1
,
gcpro2
;
struct
gcpro
gcpro1
;
Lisp_Object
args
[
7
];
GCPRO1
(
default_filename
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment