From 1f1d079727abfbea594068199fc11dcc75580c69 Mon Sep 17 00:00:00 2001 From: Jason Rumney Date: Thu, 17 Jan 2008 12:05:19 +0000 Subject: (use_file_dialog): Doc fix. --- src/fns.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/fns.c') diff --git a/src/fns.c b/src/fns.c index 360501db80a..3f3cdccc36d 100644 --- a/src/fns.c +++ b/src/fns.c @@ -5828,9 +5828,10 @@ invoked by mouse clicks and mouse menu items. */); DEFVAR_BOOL ("use-file-dialog", &use_file_dialog, doc: /* *Non-nil means mouse commands use a file dialog to ask for files. -This applies to commands from menus and tool bar buttons. The value of -`use-dialog-box' takes precedence over this variable, so a file dialog is only -used if both `use-dialog-box' and this variable are non-nil. */); +This applies to commands from menus and tool bar buttons even when +they are initiated from the keyboard. The value of `use-dialog-box' +takes precedence over this variable, so a file dialog is only used if +both `use-dialog-box' and this variable are non-nil. */); use_file_dialog = 1; defsubr (&Sidentity); -- cgit v1.2.3 From ccd8f7fe141f55e9ba381633b02a6467df0270e1 Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Fri, 25 Jan 2008 10:01:15 +0000 Subject: (Fclrhash): Return TABLE. --- src/ChangeLog | 4 ++++ src/fns.c | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'src/fns.c') diff --git a/src/ChangeLog b/src/ChangeLog index 24b69f1a8d1..a6d8cc928d6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2008-01-25 Thien-Thi Nguyen + + * fns.c (Fclrhash): Return TABLE. + 2008-01-23 YAMAMOTO Mitsuharu * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p. diff --git a/src/fns.c b/src/fns.c index 01c7e583661..a6872e7d5ec 100644 --- a/src/fns.c +++ b/src/fns.c @@ -5407,12 +5407,13 @@ DEFUN ("hash-table-p", Fhash_table_p, Shash_table_p, 1, 1, 0, DEFUN ("clrhash", Fclrhash, Sclrhash, 1, 1, 0, - doc: /* Clear hash table TABLE. */) + doc: /* Clear hash table TABLE and return it. */) (table) Lisp_Object table; { hash_clear (check_hash_table (table)); - return Qnil; + /* Be compatible with XEmacs. */ + return table; } -- cgit v1.2.3