diff options
| author | Glenn Morris | 2010-10-23 14:13:39 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-10-23 14:13:39 -0700 |
| commit | 66c6abf0d76aad59cf5defee7ea63f9fb356839d (patch) | |
| tree | dc430c8cb7579d6ccd7cf496844fcbc8c647e4d6 | |
| parent | f3d87560bad3428c61d763a02e8a3a6b66d5d45a (diff) | |
| download | emacs-66c6abf0d76aad59cf5defee7ea63f9fb356839d.tar.gz emacs-66c6abf0d76aad59cf5defee7ea63f9fb356839d.zip | |
Sync docs of cursor-in-non-selected-windows between Lisp and C.
* lisp/frame.el (cursor-in-non-selected-windows): Sync doc with C version.
* src/buffer.c (syms_of_buffer) <cursor-in-non-selected-windows>:
Sync doc with Lisp version.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/frame.el | 10 | ||||
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/buffer.c | 18 |
4 files changed, 19 insertions, 15 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 296badae594..07350947106 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | 2010-10-23 Glenn Morris <rgm@gnu.org> | 1 | 2010-10-23 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * frame.el (auto-hscroll-mode): Sync doc with C version. | 3 | * frame.el (auto-hscroll-mode, cursor-in-non-selected-windows): |
| 4 | Sync docs with C version. | ||
| 4 | 5 | ||
| 5 | * term/ns-win.el (xw-defined-colors): | 6 | * term/ns-win.el (xw-defined-colors): |
| 6 | * term/x-win.el (xw-defined-colors): Make docs identical to w32-win. | 7 | * term/x-win.el (xw-defined-colors): Make docs identical to w32-win. |
diff --git a/lisp/frame.el b/lisp/frame.el index 82feab16f0d..431c2aefff4 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -1593,12 +1593,12 @@ cursor shapes." | |||
| 1593 | 1593 | ||
| 1594 | 1594 | ||
| 1595 | (defcustom cursor-in-non-selected-windows t | 1595 | (defcustom cursor-in-non-selected-windows t |
| 1596 | "Non-nil means show a hollow box cursor in non-selected windows. | 1596 | "Non-nil means show a cursor in non-selected windows. |
| 1597 | If nil, don't show a cursor except in the selected window. | 1597 | If nil, only shows a cursor in the selected window. |
| 1598 | If t, display a cursor related to the usual cursor type | 1598 | If t, displays a cursor related to the usual cursor type |
| 1599 | \(a solid box becomes hollow, a bar becomes a narrower bar). | 1599 | \(a solid box becomes hollow, a bar becomes a narrower bar). |
| 1600 | You can also specify the cursor type as in the `cursor-type' variable. | 1600 | You can also specify the cursor type as in the `cursor-type' variable. |
| 1601 | Use Custom to set this variable to get the display updated." | 1601 | Use Custom to set this variable and update the display." |
| 1602 | :tag "Cursor In Non-selected Windows" | 1602 | :tag "Cursor In Non-selected Windows" |
| 1603 | :type 'boolean | 1603 | :type 'boolean |
| 1604 | :group 'cursor | 1604 | :group 'cursor |
diff --git a/src/ChangeLog b/src/ChangeLog index add8cbeedb5..3fa7d87cd4c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | 2010-10-23 Glenn Morris <rgm@gnu.org> | 1 | 2010-10-23 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * xdisp.c (syms_of_xdisp) <auto-hscroll-mode>: Sync doc with Lisp. | 3 | * buffer.c (syms_of_buffer) <cursor-in-non-selected-windows>: |
| 4 | * xdisp.c (syms_of_xdisp) <auto-hscroll-mode>: Sync docs with Lisp. | ||
| 4 | 5 | ||
| 5 | 2010-10-23 Eli Zaretskii <eliz@gnu.org> | 6 | 2010-10-23 Eli Zaretskii <eliz@gnu.org> |
| 6 | 7 | ||
diff --git a/src/buffer.c b/src/buffer.c index ed3b7acd2ac..5a6bfcba060 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -1,8 +1,8 @@ | |||
| 1 | /* Buffer manipulation primitives for GNU Emacs. | 1 | /* Buffer manipulation primitives for GNU Emacs. |
| 2 | Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, | 2 | |
| 3 | 1995, 1997, 1998, 1999, 2000, 2001, 2002, | 3 | Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995, 1997, |
| 4 | 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 | 4 | 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, |
| 5 | Free Software Foundation, Inc. | 5 | 2009, 2010 Free Software Foundation, Inc. |
| 6 | 6 | ||
| 7 | This file is part of GNU Emacs. | 7 | This file is part of GNU Emacs. |
| 8 | 8 | ||
| @@ -6140,8 +6140,12 @@ to the default frame line height. A value of nil means add no extra space. */) | |||
| 6140 | 6140 | ||
| 6141 | DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows", | 6141 | DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows", |
| 6142 | ¤t_buffer->cursor_in_non_selected_windows, Qnil, | 6142 | ¤t_buffer->cursor_in_non_selected_windows, Qnil, |
| 6143 | doc: /* *Cursor type to display in non-selected windows. | 6143 | doc: /* *Non-nil means show a cursor in non-selected windows. |
| 6144 | The value t means to use hollow box cursor. See `cursor-type' for other values. */); | 6144 | If nil, only shows a cursor in the selected window. |
| 6145 | If t, displays a cursor related to the usual cursor type | ||
| 6146 | \(a solid box becomes hollow, a bar becomes a narrower bar). | ||
| 6147 | You can also specify the cursor type as in the `cursor-type' variable. | ||
| 6148 | Use Custom to set this variable and update the display." */); | ||
| 6145 | 6149 | ||
| 6146 | DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions, | 6150 | DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions, |
| 6147 | doc: /* List of functions called with no args to query before killing a buffer. | 6151 | doc: /* List of functions called with no args to query before killing a buffer. |
| @@ -6218,5 +6222,3 @@ keys_of_buffer (void) | |||
| 6218 | Fput (intern_c_string ("erase-buffer"), Qdisabled, Qt); | 6222 | Fput (intern_c_string ("erase-buffer"), Qdisabled, Qt); |
| 6219 | } | 6223 | } |
| 6220 | 6224 | ||
| 6221 | /* arch-tag: e48569bf-69a9-4b65-a23b-8e68769436e1 | ||
| 6222 | (do not change this comment) */ | ||