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
94b9aaa2
Commit
94b9aaa2
authored
Oct 17, 2007
by
Glenn Morris
Browse files
(Qcompletion_ignore_case): New external Lisp_Object.
(Fread_file_name): Use it rather than intern'ing.
parent
ecd3f8b2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
src/ChangeLog
src/ChangeLog
+12
-0
src/fileio.c
src/fileio.c
+2
-1
No files found.
src/ChangeLog
View file @
94b9aaa2
2007-10-17 Glenn Morris <rgm@gnu.org>
* minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
(syms_of_minibuf): Add Qcompletion_ignore_case.
* dired.c (Qcompletion_ignore_case): Change to external.
(syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
* fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
(Fread_file_name): Use it rather than intern'ing.
* coding.c (Qcompletion_ignore_case): New external Lisp_Object.
(Fread_coding_system): Ignore case of user input.
2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* xdisp.c (handle_display_prop): Ignore display specs after
...
...
src/fileio.c
View file @
94b9aaa2
...
...
@@ -6163,6 +6163,7 @@ then any auto-save counts as "recent". */)
/* Reading and completing file names */
extern
Lisp_Object
Ffile_name_completion
(),
Ffile_name_all_completions
();
extern
Lisp_Object
Qcompletion_ignore_case
;
/* In the string VAL, change each $ to $$ and return the result. */
...
...
@@ -6468,7 +6469,7 @@ and `read-file-name-function'. */)
}
count
=
SPECPDL_INDEX
();
specbind (
intern ("
completion
-
ignore
-
case
")
,
specbind
(
Q
completion
_
ignore
_
case
,
read_file_name_completion_ignore_case
?
Qt
:
Qnil
);
specbind
(
intern
(
"minibuffer-completing-file-name"
),
Qt
);
specbind
(
intern
(
"read-file-name-predicate"
),
...
...
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