From: Luc Teirlinck Date: Wed, 20 Oct 2004 02:20:44 +0000 (+0000) Subject: (Flocal_variable_if_set_p): Doc fix. X-Git-Tag: ttn-vms-21-2-B4~4464 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1dc5ba01509cfec9d1fbf0c161a5c88aa275aa77;p=emacs.git (Flocal_variable_if_set_p): Doc fix. --- diff --git a/src/ChangeLog b/src/ChangeLog index 750e3d52df3..5260196d5cd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2004-10-19 Luc Teirlinck + + * data.c (Flocal_variable_if_set_p): Doc fix. + 2004-10-19 Jason Rumney * w32.c (init_environment): Set emacs_dir correctly when running @@ -10,7 +14,7 @@ 2004-10-19 Jan Dj,Ad(Brv - * gtkutil.h (xg_update_scrollbar_pos): Remove arguments real_left + * gtkutil.h (xg_update_scrollbar_pos): Remove arguments real_left and canon_width. (xg_frame_cleared): Removed. @@ -25,7 +29,7 @@ Move window clear to xterm.c. * gtkutil.h (xg_frame_cleared): Removed. - + * xterm.c (x_clear_frame): Remove call to xg_frame_cleared (x_scroll_bar_create, XTset_vertical_scroll_bar): Remove arguments left and width to xg_update_scrollbar_pos. diff --git a/src/data.c b/src/data.c index 616e91c2d62..33b37376a49 100644 --- a/src/data.c +++ b/src/data.c @@ -1794,7 +1794,11 @@ BUFFER defaults to the current buffer. */) DEFUN ("local-variable-if-set-p", Flocal_variable_if_set_p, Slocal_variable_if_set_p, 1, 2, 0, - doc: /* Non-nil if VARIABLE will be local in buffer BUFFER if it is set there. + doc: /* Non-nil if VARIABLE will be local in buffer BUFFER when set there. +More precisely, this means that setting the variable \(with `set' or`setq'), +while it does not have a `let'-style binding that was made in BUFFER, +will produce a buffer local binding. See Info node +`(elisp)Creating Buffer-Local'. BUFFER defaults to the current buffer. */) (variable, buffer) register Lisp_Object variable, buffer;