Now on revision 112286. ------------------------------------------------------------ revno: 112286 author: Andrew Cohen committer: Katsumi Yamaoka branch nick: trunk timestamp: Sun 2013-04-14 22:16:44 +0000 message: lisp/gnus/nnir.el (nnir-request-set-mark): Make sure we are in the right group diff: === modified file 'lisp/gnus/ChangeLog' --- lisp/gnus/ChangeLog 2013-04-12 15:17:47 +0000 +++ lisp/gnus/ChangeLog 2013-04-14 22:16:44 +0000 @@ -1,3 +1,8 @@ +2013-04-14 Andrew Cohen + + * nnir.el (nnir-request-set-mark): Make sure we are in the right + group. + 2013-04-12 Katsumi Yamaoka * gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles === modified file 'lisp/gnus/nnir.el' --- lisp/gnus/nnir.el 2013-04-10 22:17:51 +0000 +++ lisp/gnus/nnir.el 2013-04-14 22:16:44 +0000 @@ -837,6 +837,7 @@ (gnus-request-update-mark artgroup artnumber mark))) (deffoo nnir-request-set-mark (group actions &optional server) + (nnir-possibly-change-group group server) (let (mlist) (dolist (action actions) (destructuring-bind (range action marks) action @@ -853,7 +854,7 @@ (deffoo nnir-request-update-info (group info &optional server) - (nnir-possibly-change-group group) + (nnir-possibly-change-group group server) ;; clear out all existing marks. (gnus-info-set-marks info nil) (gnus-info-set-read info nil) ------------------------------------------------------------ revno: 112285 committer: Paul Eggert branch nick: trunk timestamp: Sun 2013-04-14 14:57:21 -0700 message: Spelling fixes. diff: === modified file 'lisp/files.el' --- lisp/files.el 2013-04-14 02:55:21 +0000 +++ lisp/files.el 2013-04-14 21:57:21 +0000 @@ -4183,7 +4183,7 @@ `small-temporary-file-directory', and /tmp." (let ((temporary-file-directory temporary-file-directory) caseless) - ;; On MS-Windows, file-truename will convert short 8+3 alises to + ;; On MS-Windows, file-truename will convert short 8+3 aliases to ;; their long file-name equivalents, so compare-strings does TRT. (if (memq system-type '(ms-dos windows-nt)) (setq temporary-file-directory (file-truename temporary-file-directory) === modified file 'test/automated/add-log-tests.el' --- test/automated/add-log-tests.el 2013-04-09 17:37:17 +0000 +++ test/automated/add-log-tests.el 2013-04-14 21:57:21 +0000 @@ -73,7 +73,7 @@ (add-log-current-defun-deftest sh-var - "Test sh-current-defun-name can find variabe definition." + "Test sh-current-defun-name can find variable definition." sh-mode " PATH=a:/ab:/usr/abc DIR=/pr> branch nick: trunk timestamp: Sun 2013-04-14 13:33:57 -0700 message: * keyboard.c (timer_start_idle): Remove no-longer-used local. diff: === modified file 'src/ChangeLog' --- src/ChangeLog 2013-04-14 06:51:15 +0000 +++ src/ChangeLog 2013-04-14 20:33:57 +0000 @@ -1,3 +1,7 @@ +2013-04-14 Paul Eggert + + * keyboard.c (timer_start_idle): Remove no-longer-used local. + 2013-04-14 Eli Zaretskii * buffer.c (syms_of_buffer) === modified file 'src/keyboard.c' --- src/keyboard.c 2013-04-10 13:31:35 +0000 +++ src/keyboard.c 2013-04-14 20:33:57 +0000 @@ -4188,8 +4188,6 @@ static void timer_start_idle (void) { - Lisp_Object timers; - /* If we are already in the idle state, do nothing. */ if (EMACS_TIME_VALID_P (timer_idleness_start_time)) return; ------------------------------------------------------------ revno: 112283 fixes bug: http://debbugs.gnu.org/14200 committer: Eli Zaretskii branch nick: trunk timestamp: Sun 2013-04-14 09:51:15 +0300 message: Improve doc strings of left/right-margin/fringe-width. src/buffer.c (syms_of_buffer) : Mention in the doc string that setting these variables takes effect only after a call to set-window-buffer. (Bug#14200) diff: === modified file 'src/ChangeLog' --- src/ChangeLog 2013-04-13 08:54:02 +0000 +++ src/ChangeLog 2013-04-14 06:51:15 +0000 @@ -1,3 +1,10 @@ +2013-04-14 Eli Zaretskii + + * buffer.c (syms_of_buffer) + : + Mention in the doc string that setting these variables takes + effect only after a call to set-window-buffer. (Bug#14200) + 2013-04-13 Eli Zaretskii * indent.c (Fvertical_motion): Don't consider display strings on === modified file 'src/buffer.c' --- src/buffer.c 2013-03-28 14:04:49 +0000 +++ src/buffer.c 2013-04-14 06:51:15 +0000 @@ -5883,29 +5883,44 @@ DEFVAR_PER_BUFFER ("left-margin-width", &BVAR (current_buffer, left_margin_cols), Qintegerp, doc: /* Width of left marginal area for display of a buffer. -A value of nil means no marginal area. */); +A value of nil means no marginal area. + +Setting this variable does not take effect until a new buffer is displayed +in a window. To make the change take effect, call `set-window-buffer'. */); DEFVAR_PER_BUFFER ("right-margin-width", &BVAR (current_buffer, right_margin_cols), Qintegerp, doc: /* Width of right marginal area for display of a buffer. -A value of nil means no marginal area. */); +A value of nil means no marginal area. + +Setting this variable does not take effect until a new buffer is displayed +in a window. To make the change take effect, call `set-window-buffer'. */); DEFVAR_PER_BUFFER ("left-fringe-width", &BVAR (current_buffer, left_fringe_width), Qintegerp, doc: /* Width of this buffer's left fringe (in pixels). A value of 0 means no left fringe is shown in this buffer's window. -A value of nil means to use the left fringe width from the window's frame. */); +A value of nil means to use the left fringe width from the window's frame. + +Setting this variable does not take effect until a new buffer is displayed +in a window. To make the change take effect, call `set-window-buffer'. */); DEFVAR_PER_BUFFER ("right-fringe-width", &BVAR (current_buffer, right_fringe_width), Qintegerp, doc: /* Width of this buffer's right fringe (in pixels). A value of 0 means no right fringe is shown in this buffer's window. -A value of nil means to use the right fringe width from the window's frame. */); +A value of nil means to use the right fringe width from the window's frame. + +Setting this variable does not take effect until a new buffer is displayed +in a window. To make the change take effect, call `set-window-buffer'. */); DEFVAR_PER_BUFFER ("fringes-outside-margins", &BVAR (current_buffer, fringes_outside_margins), Qnil, doc: /* Non-nil means to display fringes outside display margins. -A value of nil means to display fringes between margins and buffer text. */); +A value of nil means to display fringes between margins and buffer text. + +Setting this variable does not take effect until a new buffer is displayed +in a window. To make the change take effect, call `set-window-buffer'. */); DEFVAR_PER_BUFFER ("scroll-bar-width", &BVAR (current_buffer, scroll_bar_width), Qintegerp,