aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-10-23 14:02:44 -0700
committerGlenn Morris2010-10-23 14:02:44 -0700
commitf3d87560bad3428c61d763a02e8a3a6b66d5d45a (patch)
tree81d3718b65987e100877796925c54b150e30741d
parent3193e969dfd6f48fc5d39e7f6486280de7d2f09d (diff)
downloademacs-f3d87560bad3428c61d763a02e8a3a6b66d5d45a.tar.gz
emacs-f3d87560bad3428c61d763a02e8a3a6b66d5d45a.zip
Sync docs of C and Lisp version of auto-hscroll-mode.
* lisp/frame.el (auto-hscroll-mode): Sync doc with C version. * src/xdisp.c (syms_of_xdisp) <auto-hscroll-mode>: Sync doc with Lisp.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/frame.el6
-rw-r--r--src/ChangeLog9
-rw-r--r--src/xdisp.c14
4 files changed, 18 insertions, 13 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b05951f54f6..296badae594 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12010-10-23 Glenn Morris <rgm@gnu.org> 12010-10-23 Glenn Morris <rgm@gnu.org>
2 2
3 * frame.el (auto-hscroll-mode): Sync doc with C version.
4
3 * term/ns-win.el (xw-defined-colors): 5 * term/ns-win.el (xw-defined-colors):
4 * term/x-win.el (xw-defined-colors): Make docs identical to w32-win. 6 * term/x-win.el (xw-defined-colors): Make docs identical to w32-win.
5 7
diff --git a/lisp/frame.el b/lisp/frame.el
index 44ac5c0e81d..82feab16f0d 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -1,7 +1,8 @@
1;;; frame.el --- multi-frame management independent of window systems 1;;; frame.el --- multi-frame management independent of window systems
2 2
3;; Copyright (C) 1993, 1994, 1996, 1997, 2000, 2001, 2002, 2003, 3;; Copyright (C) 1993, 1994, 1996, 1997, 2000, 2001, 2002, 2003,
4;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 4;; 2004, 2005, 2006, 2007, 2008, 2009, 2010
5;; Free Software Foundation, Inc.
5 6
6;; Maintainer: FSF 7;; Maintainer: FSF
7;; Keywords: internal 8;; Keywords: internal
@@ -1483,7 +1484,7 @@ This is done in the face `trailing-whitespace'."
1483 :group 'frames) 1484 :group 'frames)
1484 1485
1485(defcustom auto-hscroll-mode t 1486(defcustom auto-hscroll-mode t
1486 "Allow or disallow automatic scrolling windows horizontally. 1487 "Allow or disallow automatic horizontal scrolling of windows.
1487If non-nil, windows are automatically scrolled horizontally to make 1488If non-nil, windows are automatically scrolled horizontally to make
1488point visible." 1489point visible."
1489 :version "21.1" 1490 :version "21.1"
@@ -1615,5 +1616,4 @@ Use Custom to set this variable to get the display updated."
1615 1616
1616(provide 'frame) 1617(provide 'frame)
1617 1618
1618;; arch-tag: 82979c70-b8f2-4306-b2ad-ddbd6b328b56
1619;;; frame.el ends here 1619;;; frame.el ends here
diff --git a/src/ChangeLog b/src/ChangeLog
index c4cd1babf7c..add8cbeedb5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12010-10-23 Glenn Morris <rgm@gnu.org>
2
3 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode>: Sync doc with Lisp.
4
12010-10-23 Eli Zaretskii <eliz@gnu.org> 52010-10-23 Eli Zaretskii <eliz@gnu.org>
2 6
3 Implement mouse highlight for bidi-reordered lines. 7 Implement mouse highlight for bidi-reordered lines.
@@ -28278,10 +28282,10 @@ See ChangeLog.10 for earlier changes.
28278 28282
28279;; Local Variables: 28283;; Local Variables:
28280;; coding: utf-8 28284;; coding: utf-8
28281;; add-log-time-zone-rule: t
28282;; End: 28285;; End:
28283 28286
28284 Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 28287 Copyright (C) 2007, 2008, 2009, 2010
28288 Free Software Foundation, Inc.
28285 28289
28286 This file is part of GNU Emacs. 28290 This file is part of GNU Emacs.
28287 28291
@@ -28298,4 +28302,3 @@ See ChangeLog.10 for earlier changes.
28298 You should have received a copy of the GNU General Public License 28302 You should have received a copy of the GNU General Public License
28299 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. 28303 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28300 28304
28301;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40
diff --git a/src/xdisp.c b/src/xdisp.c
index e2ec1360b49..359d25342ab 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -1,8 +1,8 @@
1/* Display generation from window structure and buffer text. 1/* Display generation from window structure and buffer text.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 2
3 1997, 1998, 1999, 2000, 2001, 2002, 2003, 3Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1997, 1998,
4 2004, 2005, 2006, 2007, 2008, 2009, 2010 4 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
5 Free Software Foundation, Inc. 5 2010 Free Software Foundation, Inc.
6 6
7This file is part of GNU Emacs. 7This file is part of GNU Emacs.
8 8
@@ -26464,7 +26464,9 @@ the frame's other specifications determine how to blink the cursor off. */);
26464 Vblink_cursor_alist = Qnil; 26464 Vblink_cursor_alist = Qnil;
26465 26465
26466 DEFVAR_BOOL ("auto-hscroll-mode", &automatic_hscrolling_p, 26466 DEFVAR_BOOL ("auto-hscroll-mode", &automatic_hscrolling_p,
26467 doc: /* *Non-nil means scroll the display automatically to make point visible. */); 26467 doc: /* Allow or disallow automatic horizontal scrolling of windows.
26468If non-nil, windows are automatically scrolled horizontally to make
26469point visible. */);
26468 automatic_hscrolling_p = 1; 26470 automatic_hscrolling_p = 1;
26469 Qauto_hscroll_mode = intern_c_string ("auto-hscroll-mode"); 26471 Qauto_hscroll_mode = intern_c_string ("auto-hscroll-mode");
26470 staticpro (&Qauto_hscroll_mode); 26472 staticpro (&Qauto_hscroll_mode);
@@ -26706,5 +26708,3 @@ cancel_hourglass (void)
26706} 26708}
26707#endif /* ! WINDOWSNT */ 26709#endif /* ! WINDOWSNT */
26708 26710
26709/* arch-tag: eacc864d-bb6a-4b74-894a-1a4399a1358b
26710 (do not change this comment) */