aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
authorMiles Bader2008-01-30 07:57:28 +0000
committerMiles Bader2008-01-30 07:57:28 +0000
commitd235ca2ff8fab139ce797757fcb159d1e28fa7e0 (patch)
tree96c5cd1a06a0d9dc26e8470c6eabfc032c0046f3 /src/fns.c
parent3709a060f679dba14df71ae64a0035fa2b5b3106 (diff)
parent02cbe062bee38a6705bafb1699d77e3c44cfafcf (diff)
downloademacs-d235ca2ff8fab139ce797757fcb159d1e28fa7e0.tar.gz
emacs-d235ca2ff8fab139ce797757fcb159d1e28fa7e0.zip
Merge from emacs--devo--0
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-324
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/fns.c b/src/fns.c
index 13c16381744..3a12768e621 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -4779,12 +4779,13 @@ DEFUN ("hash-table-p", Fhash_table_p, Shash_table_p, 1, 1, 0,
4779 4779
4780 4780
4781DEFUN ("clrhash", Fclrhash, Sclrhash, 1, 1, 0, 4781DEFUN ("clrhash", Fclrhash, Sclrhash, 1, 1, 0,
4782 doc: /* Clear hash table TABLE. */) 4782 doc: /* Clear hash table TABLE and return it. */)
4783 (table) 4783 (table)
4784 Lisp_Object table; 4784 Lisp_Object table;
4785{ 4785{
4786 hash_clear (check_hash_table (table)); 4786 hash_clear (check_hash_table (table));
4787 return Qnil; 4787 /* Be compatible with XEmacs. */
4788 return table;
4788} 4789}
4789 4790
4790 4791
@@ -5200,9 +5201,10 @@ invoked by mouse clicks and mouse menu items. */);
5200 5201
5201 DEFVAR_BOOL ("use-file-dialog", &use_file_dialog, 5202 DEFVAR_BOOL ("use-file-dialog", &use_file_dialog,
5202 doc: /* *Non-nil means mouse commands use a file dialog to ask for files. 5203 doc: /* *Non-nil means mouse commands use a file dialog to ask for files.
5203This applies to commands from menus and tool bar buttons. The value of 5204This applies to commands from menus and tool bar buttons even when
5204`use-dialog-box' takes precedence over this variable, so a file dialog is only 5205they are initiated from the keyboard. The value of `use-dialog-box'
5205used if both `use-dialog-box' and this variable are non-nil. */); 5206takes precedence over this variable, so a file dialog is only used if
5207both `use-dialog-box' and this variable are non-nil. */);
5206 use_file_dialog = 1; 5208 use_file_dialog = 1;
5207 5209
5208 defsubr (&Sidentity); 5210 defsubr (&Sidentity);