aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2010-10-23 14:02:44 -0700
committerGlenn Morris2010-10-23 14:02:44 -0700
commitf3d87560bad3428c61d763a02e8a3a6b66d5d45a (patch)
tree81d3718b65987e100877796925c54b150e30741d /src
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.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog9
-rw-r--r--src/xdisp.c14
2 files changed, 13 insertions, 10 deletions
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) */