aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoakim Verona2013-09-14 11:40:24 +0200
committerJoakim Verona2013-09-14 11:40:24 +0200
commit2b483f0f59ff7f125dfbe490e42eb84c238ac971 (patch)
treeba1528a35fc63b414fe981fe335b053beec4bfe3 /src
parent9523ac3289ca64bd74c42a1cc20ed1df7a9896e7 (diff)
parent08a209bff2e8f91720e5b2dfbac071ea2286814b (diff)
downloademacs-2b483f0f59ff7f125dfbe490e42eb84c238ac971.tar.gz
emacs-2b483f0f59ff7f125dfbe490e42eb84c238ac971.zip
merge from trunk
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/buffer.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index cc8704da2a1..00f3fa8eccf 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12013-09-14 Eli Zaretskii <eliz@gnu.org>
2
3 * buffer.c (syms_of_buffer) <left-margin-width, right-margin-width>:
4 Doc fix. (Bug#15375)
5
12013-09-13 Dmitry Antipov <dmantipov@yandex.ru> 62013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
2 7
3 Unify Fx_focus_frame between all ports. 8 Unify Fx_focus_frame between all ports.
diff --git a/src/buffer.c b/src/buffer.c
index ff05da6d0d9..71c01237205 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5909,7 +5909,7 @@ See also the functions `display-table-slot' and `set-display-table-slot'. */);
5909 5909
5910 DEFVAR_PER_BUFFER ("left-margin-width", &BVAR (current_buffer, left_margin_cols), 5910 DEFVAR_PER_BUFFER ("left-margin-width", &BVAR (current_buffer, left_margin_cols),
5911 Qintegerp, 5911 Qintegerp,
5912 doc: /* Width of left marginal area for display of a buffer. 5912 doc: /* Width in columns of left marginal area for display of a buffer.
5913A value of nil means no marginal area. 5913A value of nil means no marginal area.
5914 5914
5915Setting this variable does not take effect until a new buffer is displayed 5915Setting this variable does not take effect until a new buffer is displayed
@@ -5917,7 +5917,7 @@ in a window. To make the change take effect, call `set-window-buffer'. */);
5917 5917
5918 DEFVAR_PER_BUFFER ("right-margin-width", &BVAR (current_buffer, right_margin_cols), 5918 DEFVAR_PER_BUFFER ("right-margin-width", &BVAR (current_buffer, right_margin_cols),
5919 Qintegerp, 5919 Qintegerp,
5920 doc: /* Width of right marginal area for display of a buffer. 5920 doc: /* Width in columns of right marginal area for display of a buffer.
5921A value of nil means no marginal area. 5921A value of nil means no marginal area.
5922 5922
5923Setting this variable does not take effect until a new buffer is displayed 5923Setting this variable does not take effect until a new buffer is displayed