aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/fileio.c24
2 files changed, 19 insertions, 9 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f7d6c07a086..3cf55438b83 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12008-02-09 Eli Zaretskii <eliz@gnu.org>
2
3 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
4
12008-02-05 Jason Rumney <jasonr@gnu.org> 52008-02-05 Jason Rumney <jasonr@gnu.org>
2 6
3 * w32term.c (w32_read_socket) <WM_CHAR>: Use locale-coding-system 7 * w32term.c (w32_read_socket) <WM_CHAR>: Use locale-coding-system
diff --git a/src/fileio.c b/src/fileio.c
index ef2b0cfbb2e..c5bff5b8153 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -6630,19 +6630,25 @@ of file names regardless of the current language environment. */);
6630 6630
6631 DEFVAR_BOOL ("insert-default-directory", &insert_default_directory, 6631 DEFVAR_BOOL ("insert-default-directory", &insert_default_directory,
6632 doc: /* *Non-nil means when reading a filename start with default dir in minibuffer. 6632 doc: /* *Non-nil means when reading a filename start with default dir in minibuffer.
6633If the initial minibuffer contents are non-empty, you can usually 6633
6634request a default filename by typing RETURN without editing. For some 6634When the initial minibuffer contents show a name of a file or a directory,
6635commands, exiting with an empty minibuffer has a special meaning, 6635typing RETURN without editing the initial contents is equivalent to typing
6636such as making the current buffer visit no file in the case of 6636the default file name.
6637`set-visited-file-name'. 6637
6638If this variable is non-nil, the minibuffer contents are always 6638If this variable is non-nil, the minibuffer contents are always
6639initially non-empty and typing RETURN without editing will fetch the 6639initially non-empty, and typing RETURN without editing will fetch the
6640default name, if one is provided. Note however that this default name 6640default name, if one is provided. Note however that this default name
6641is not necessarily the name originally inserted in the minibuffer, if 6641is not necessarily the same as initial contents inserted in the minibuffer,
6642that is just the default directory. 6642if the initial contents is just the default directory.
6643
6643If this variable is nil, the minibuffer often starts out empty. In 6644If this variable is nil, the minibuffer often starts out empty. In
6644that case you may have to explicitly fetch the next history element to 6645that case you may have to explicitly fetch the next history element to
6645request the default name. */); 6646request the default name; typing RETURN without editing will leave
6647the minibuffer empty.
6648
6649For some commands, exiting with an empty minibuffer has a special meaning,
6650such as making the current buffer visit no file in the case of
6651`set-visited-file-name'. */);
6646 insert_default_directory = 1; 6652 insert_default_directory = 1;
6647 6653
6648 DEFVAR_BOOL ("vms-stmlf-recfm", &vms_stmlf_recfm, 6654 DEFVAR_BOOL ("vms-stmlf-recfm", &vms_stmlf_recfm,