diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2009-02-26 10:18:15 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2009-02-26 10:18:15 +0000 |
commit | 1a0de25cadc376f946e31accef07f83570b314ab (patch) | |
tree | 8023c338e78cab904e00775c48b3c1af668e35e7 /src | |
parent | 8e5a88405c3522c6dfeaae14a1c43b39d7f1550e (diff) | |
download | emacs-1a0de25cadc376f946e31accef07f83570b314ab.tar.gz |
* fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeLog | 4 | ||||
-rw-r--r-- | src/fileio.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index c98e26ae873..6148ff02abd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2009-02-26 Juanma Barranquero <lekktu@gmail.com> + + * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring. + 2009-02-25 Juanma Barranquero <lekktu@gmail.com> * lread.c (Fload): Stop checking Vloads_in_progress and signal diff --git a/src/fileio.c b/src/fileio.c index 5b96949dcc4..ab06e4e5c87 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -5404,7 +5404,7 @@ DEFUN ("next-read-file-uses-dialog-p", Fnext_read_file_uses_dialog_p, Snext_read_file_uses_dialog_p, 0, 0, 0, doc: /* Return t if a call to `read-file-name' will use a dialog. The return value is only relevant for a call to `read-file-name' that happens -before any other event (mouse or keypress) is handeled. */) +before any other event (mouse or keypress) is handled. */) () { #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK) |