From: Glenn Morris Date: Sat, 23 Oct 2010 21:02:44 +0000 (-0700) Subject: Sync docs of C and Lisp version of auto-hscroll-mode. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~45^2~505 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f3d87560bad3428c61d763a02e8a3a6b66d5d45a;p=emacs.git 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) : Sync doc with Lisp. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b05951f54f6..296badae594 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2010-10-23 Glenn Morris + * frame.el (auto-hscroll-mode): Sync doc with C version. + * term/ns-win.el (xw-defined-colors): * term/x-win.el (xw-defined-colors): Make docs identical to w32-win. 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 @@ ;;; frame.el --- multi-frame management independent of window systems ;; Copyright (C) 1993, 1994, 1996, 1997, 2000, 2001, 2002, 2003, -;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 +;; Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: internal @@ -1483,7 +1484,7 @@ This is done in the face `trailing-whitespace'." :group 'frames) (defcustom auto-hscroll-mode t - "Allow or disallow automatic scrolling windows horizontally. + "Allow or disallow automatic horizontal scrolling of windows. If non-nil, windows are automatically scrolled horizontally to make point visible." :version "21.1" @@ -1615,5 +1616,4 @@ Use Custom to set this variable to get the display updated." (provide 'frame) -;; arch-tag: 82979c70-b8f2-4306-b2ad-ddbd6b328b56 ;;; 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 @@ +2010-10-23 Glenn Morris + + * xdisp.c (syms_of_xdisp) : Sync doc with Lisp. + 2010-10-23 Eli Zaretskii Implement mouse highlight for bidi-reordered lines. @@ -28278,10 +28282,10 @@ See ChangeLog.10 for earlier changes. ;; Local Variables: ;; coding: utf-8 -;; add-log-time-zone-rule: t ;; End: - Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc. + Copyright (C) 2007, 2008, 2009, 2010 + Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -28298,4 +28302,3 @@ See ChangeLog.10 for earlier changes. You should have received a copy of the GNU General Public License along with GNU Emacs. If not, see . -;; 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 @@ /* Display generation from window structure and buffer text. - Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, - 1997, 1998, 1999, 2000, 2001, 2002, 2003, - 2004, 2005, 2006, 2007, 2008, 2009, 2010 - Free Software Foundation, Inc. + +Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1997, 1998, + 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, + 2010 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -26464,7 +26464,9 @@ the frame's other specifications determine how to blink the cursor off. */); Vblink_cursor_alist = Qnil; DEFVAR_BOOL ("auto-hscroll-mode", &automatic_hscrolling_p, - doc: /* *Non-nil means scroll the display automatically to make point visible. */); + doc: /* Allow or disallow automatic horizontal scrolling of windows. +If non-nil, windows are automatically scrolled horizontally to make +point visible. */); automatic_hscrolling_p = 1; Qauto_hscroll_mode = intern_c_string ("auto-hscroll-mode"); staticpro (&Qauto_hscroll_mode); @@ -26706,5 +26708,3 @@ cancel_hourglass (void) } #endif /* ! WINDOWSNT */ -/* arch-tag: eacc864d-bb6a-4b74-894a-1a4399a1358b - (do not change this comment) */