aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/callint.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/callint.c b/src/callint.c
index 933601f67d0..dea776e0f1c 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -98,6 +98,7 @@ e -- Parametrized event (i.e., one that's a list) that invoked this command.
98 This skips events that are integers or symbols. 98 This skips events that are integers or symbols.
99f -- Existing file name. 99f -- Existing file name.
100F -- Possibly nonexistent file name. 100F -- Possibly nonexistent file name.
101G -- Possibly nonexistent file name, defaulting to just directory name.
101i -- Ignored, i.e. always nil. Does not do I/O. 102i -- Ignored, i.e. always nil. Does not do I/O.
102k -- Key sequence (downcase the last event if needed to get a definition). 103k -- Key sequence (downcase the last event if needed to get a definition).
103K -- Key sequence to be redefined (do not downcase the last event). 104K -- Key sequence to be redefined (do not downcase the last event).
@@ -605,6 +606,12 @@ If KEYS is omitted or nil, the return value of `this-command-keys' is used. */)
605 Qnil, Qnil, Qnil, Qnil, Qnil); 606 Qnil, Qnil, Qnil, Qnil, Qnil);
606 break; 607 break;
607 608
609 case 'G': /* Possibly nonexistent file name,
610 default to directory alone. */
611 args[i] = Fread_file_name (build_string (callint_message),
612 Qnil, Qnil, Qnil, build_string (""), Qnil);
613 break;
614
608 case 'i': /* Ignore an argument -- Does not do I/O */ 615 case 'i': /* Ignore an argument -- Does not do I/O */
609 varies[i] = -1; 616 varies[i] = -1;
610 break; 617 break;