aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Verona2013-04-15 08:30:29 +0200
committerJoakim Verona2013-04-15 08:30:29 +0200
commitd23364e4a27b2ec625cdbf3428d4600fcd1ef7a2 (patch)
treee5c63701ea60b09a10dd04736dde5802e160b86e
parent679f5c7157a39033a9d462db3c47e5ce3c89304e (diff)
parent35c5bbbad00618df4d4d738bbd6b6ea9023922eb (diff)
downloademacs-d23364e4a27b2ec625cdbf3428d4600fcd1ef7a2.tar.gz
emacs-d23364e4a27b2ec625cdbf3428d4600fcd1ef7a2.zip
auto upstream
-rw-r--r--lisp/files.el2
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/nnir.el3
-rw-r--r--src/ChangeLog11
-rw-r--r--src/buffer.c25
-rw-r--r--src/keyboard.c2
-rw-r--r--test/automated/add-log-tests.el2
7 files changed, 40 insertions, 10 deletions
diff --git a/lisp/files.el b/lisp/files.el
index ce032534f04..238be36cae0 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -4183,7 +4183,7 @@ Checks for files in `temporary-file-directory',
4183`small-temporary-file-directory', and /tmp." 4183`small-temporary-file-directory', and /tmp."
4184 (let ((temporary-file-directory temporary-file-directory) 4184 (let ((temporary-file-directory temporary-file-directory)
4185 caseless) 4185 caseless)
4186 ;; On MS-Windows, file-truename will convert short 8+3 alises to 4186 ;; On MS-Windows, file-truename will convert short 8+3 aliases to
4187 ;; their long file-name equivalents, so compare-strings does TRT. 4187 ;; their long file-name equivalents, so compare-strings does TRT.
4188 (if (memq system-type '(ms-dos windows-nt)) 4188 (if (memq system-type '(ms-dos windows-nt))
4189 (setq temporary-file-directory (file-truename temporary-file-directory) 4189 (setq temporary-file-directory (file-truename temporary-file-directory)
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index f15ed7e707c..cc7897accb6 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12013-04-14 Andrew Cohen <cohen@bu.edu>
2
3 * nnir.el (nnir-request-set-mark): Make sure we are in the right
4 group.
5
12013-04-12 Katsumi Yamaoka <yamaoka@jpl.org> 62013-04-12 Katsumi Yamaoka <yamaoka@jpl.org>
2 7
3 * gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles 8 * gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles
diff --git a/lisp/gnus/nnir.el b/lisp/gnus/nnir.el
index 5d244a019cb..2fa6b600ac1 100644
--- a/lisp/gnus/nnir.el
+++ b/lisp/gnus/nnir.el
@@ -837,6 +837,7 @@ skips all prompting."
837 (gnus-request-update-mark artgroup artnumber mark))) 837 (gnus-request-update-mark artgroup artnumber mark)))
838 838
839(deffoo nnir-request-set-mark (group actions &optional server) 839(deffoo nnir-request-set-mark (group actions &optional server)
840 (nnir-possibly-change-group group server)
840 (let (mlist) 841 (let (mlist)
841 (dolist (action actions) 842 (dolist (action actions)
842 (destructuring-bind (range action marks) action 843 (destructuring-bind (range action marks) action
@@ -853,7 +854,7 @@ skips all prompting."
853 854
854 855
855(deffoo nnir-request-update-info (group info &optional server) 856(deffoo nnir-request-update-info (group info &optional server)
856 (nnir-possibly-change-group group) 857 (nnir-possibly-change-group group server)
857 ;; clear out all existing marks. 858 ;; clear out all existing marks.
858 (gnus-info-set-marks info nil) 859 (gnus-info-set-marks info nil)
859 (gnus-info-set-read info nil) 860 (gnus-info-set-read info nil)
diff --git a/src/ChangeLog b/src/ChangeLog
index af2d38d2e87..5c0e26760c7 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,14 @@
12013-04-14 Paul Eggert <eggert@cs.ucla.edu>
2
3 * keyboard.c (timer_start_idle): Remove no-longer-used local.
4
52013-04-14 Eli Zaretskii <eliz@gnu.org>
6
7 * buffer.c (syms_of_buffer) <left-margin-width, right-margin-width>
8 <left-fringe-width, right-fringe-width, fringes-outside-margins>:
9 Mention in the doc string that setting these variables takes
10 effect only after a call to set-window-buffer. (Bug#14200)
11
12013-04-13 Eli Zaretskii <eliz@gnu.org> 122013-04-13 Eli Zaretskii <eliz@gnu.org>
2 13
3 * indent.c (Fvertical_motion): Don't consider display strings on 14 * indent.c (Fvertical_motion): Don't consider display strings on
diff --git a/src/buffer.c b/src/buffer.c
index 8728b418812..3810d3db079 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5883,29 +5883,44 @@ See also the functions `display-table-slot' and `set-display-table-slot'. */);
5883 DEFVAR_PER_BUFFER ("left-margin-width", &BVAR (current_buffer, left_margin_cols), 5883 DEFVAR_PER_BUFFER ("left-margin-width", &BVAR (current_buffer, left_margin_cols),
5884 Qintegerp, 5884 Qintegerp,
5885 doc: /* Width of left marginal area for display of a buffer. 5885 doc: /* Width of left marginal area for display of a buffer.
5886A value of nil means no marginal area. */); 5886A value of nil means no marginal area.
5887
5888Setting this variable does not take effect until a new buffer is displayed
5889in a window. To make the change take effect, call `set-window-buffer'. */);
5887 5890
5888 DEFVAR_PER_BUFFER ("right-margin-width", &BVAR (current_buffer, right_margin_cols), 5891 DEFVAR_PER_BUFFER ("right-margin-width", &BVAR (current_buffer, right_margin_cols),
5889 Qintegerp, 5892 Qintegerp,
5890 doc: /* Width of right marginal area for display of a buffer. 5893 doc: /* Width of right marginal area for display of a buffer.
5891A value of nil means no marginal area. */); 5894A value of nil means no marginal area.
5895
5896Setting this variable does not take effect until a new buffer is displayed
5897in a window. To make the change take effect, call `set-window-buffer'. */);
5892 5898
5893 DEFVAR_PER_BUFFER ("left-fringe-width", &BVAR (current_buffer, left_fringe_width), 5899 DEFVAR_PER_BUFFER ("left-fringe-width", &BVAR (current_buffer, left_fringe_width),
5894 Qintegerp, 5900 Qintegerp,
5895 doc: /* Width of this buffer's left fringe (in pixels). 5901 doc: /* Width of this buffer's left fringe (in pixels).
5896A value of 0 means no left fringe is shown in this buffer's window. 5902A value of 0 means no left fringe is shown in this buffer's window.
5897A value of nil means to use the left fringe width from the window's frame. */); 5903A value of nil means to use the left fringe width from the window's frame.
5904
5905Setting this variable does not take effect until a new buffer is displayed
5906in a window. To make the change take effect, call `set-window-buffer'. */);
5898 5907
5899 DEFVAR_PER_BUFFER ("right-fringe-width", &BVAR (current_buffer, right_fringe_width), 5908 DEFVAR_PER_BUFFER ("right-fringe-width", &BVAR (current_buffer, right_fringe_width),
5900 Qintegerp, 5909 Qintegerp,
5901 doc: /* Width of this buffer's right fringe (in pixels). 5910 doc: /* Width of this buffer's right fringe (in pixels).
5902A value of 0 means no right fringe is shown in this buffer's window. 5911A value of 0 means no right fringe is shown in this buffer's window.
5903A value of nil means to use the right fringe width from the window's frame. */); 5912A value of nil means to use the right fringe width from the window's frame.
5913
5914Setting this variable does not take effect until a new buffer is displayed
5915in a window. To make the change take effect, call `set-window-buffer'. */);
5904 5916
5905 DEFVAR_PER_BUFFER ("fringes-outside-margins", &BVAR (current_buffer, fringes_outside_margins), 5917 DEFVAR_PER_BUFFER ("fringes-outside-margins", &BVAR (current_buffer, fringes_outside_margins),
5906 Qnil, 5918 Qnil,
5907 doc: /* Non-nil means to display fringes outside display margins. 5919 doc: /* Non-nil means to display fringes outside display margins.
5908A value of nil means to display fringes between margins and buffer text. */); 5920A value of nil means to display fringes between margins and buffer text.
5921
5922Setting this variable does not take effect until a new buffer is displayed
5923in a window. To make the change take effect, call `set-window-buffer'. */);
5909 5924
5910 DEFVAR_PER_BUFFER ("scroll-bar-width", &BVAR (current_buffer, scroll_bar_width), 5925 DEFVAR_PER_BUFFER ("scroll-bar-width", &BVAR (current_buffer, scroll_bar_width),
5911 Qintegerp, 5926 Qintegerp,
diff --git a/src/keyboard.c b/src/keyboard.c
index dbd3717c428..845c62726ea 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -4198,8 +4198,6 @@ swallow_events (bool do_display)
4198static void 4198static void
4199timer_start_idle (void) 4199timer_start_idle (void)
4200{ 4200{
4201 Lisp_Object timers;
4202
4203 /* If we are already in the idle state, do nothing. */ 4201 /* If we are already in the idle state, do nothing. */
4204 if (EMACS_TIME_VALID_P (timer_idleness_start_time)) 4202 if (EMACS_TIME_VALID_P (timer_idleness_start_time))
4205 return; 4203 return;
diff --git a/test/automated/add-log-tests.el b/test/automated/add-log-tests.el
index 28029e18b99..f6e803cd317 100644
--- a/test/automated/add-log-tests.el
+++ b/test/automated/add-log-tests.el
@@ -73,7 +73,7 @@ function foo()
73 73
74(add-log-current-defun-deftest 74(add-log-current-defun-deftest
75 sh-var 75 sh-var
76 "Test sh-current-defun-name can find variabe definition." 76 "Test sh-current-defun-name can find variable definition."
77 sh-mode " 77 sh-mode "
78PATH=a:/ab:/usr/abc 78PATH=a:/ab:/usr/abc
79DIR=/pr><oc" 79DIR=/pr><oc"