diff options
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 12 |
1 files changed, 7 insertions, 5 deletions
| @@ -4779,12 +4779,13 @@ DEFUN ("hash-table-p", Fhash_table_p, Shash_table_p, 1, 1, 0, | |||
| 4779 | 4779 | ||
| 4780 | 4780 | ||
| 4781 | DEFUN ("clrhash", Fclrhash, Sclrhash, 1, 1, 0, | 4781 | DEFUN ("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. |
| 5203 | This applies to commands from menus and tool bar buttons. The value of | 5204 | This 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 | 5205 | they are initiated from the keyboard. The value of `use-dialog-box' |
| 5205 | used if both `use-dialog-box' and this variable are non-nil. */); | 5206 | takes precedence over this variable, so a file dialog is only used if |
| 5207 | both `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); |