diff options
| author | Glenn Morris | 2012-06-03 16:28:17 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-06-03 16:28:17 -0700 |
| commit | 0c3461de8684836598f5ef3d32161deb84df2443 (patch) | |
| tree | c169635069cccb6943b90e3c79de0f51367d080d | |
| parent | c71232db6e7a2dbd0cb0830829dcce8285ffa138 (diff) | |
| download | emacs-0c3461de8684836598f5ef3d32161deb84df2443.tar.gz emacs-0c3461de8684836598f5ef3d32161deb84df2443.zip | |
tool-bar-style doc fixes
* lisp/cus-start.el (tool-bar-style, tool-bar-max-label-size): Fix :version.
* src/xdisp.c (tool-bar-style): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/cus-start.el | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/xdisp.c | 6 |
4 files changed, 15 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ba77c554ab6..e40fa7bb689 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-06-03 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * cus-start.el (tool-bar-style, tool-bar-max-label-size): | ||
| 4 | Fix :version. | ||
| 5 | |||
| 1 | 2012-06-03 Stefan Merten <smerten@oekonux.de> | 6 | 2012-06-03 Stefan Merten <smerten@oekonux.de> |
| 2 | 7 | ||
| 3 | * textmodes/rst.el: Add comments. | 8 | * textmodes/rst.el: Add comments. |
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 3ea5f41db55..c5f7f5b3d31 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -460,8 +460,8 @@ since it could result in memory overflow and make Emacs crash." | |||
| 460 | (const :tag "Both" :value both) | 460 | (const :tag "Both" :value both) |
| 461 | (const :tag "Both-horiz" :value both-horiz) | 461 | (const :tag "Both-horiz" :value both-horiz) |
| 462 | (const :tag "Text-image-horiz" :value text-image-horiz) | 462 | (const :tag "Text-image-horiz" :value text-image-horiz) |
| 463 | (const :tag "System default" :value nil)) "23.3") | 463 | (const :tag "System default" :value nil)) "24.1") |
| 464 | (tool-bar-max-label-size frames integer "23.3") | 464 | (tool-bar-max-label-size frames integer "24.1") |
| 465 | (auto-hscroll-mode scrolling boolean "21.1") | 465 | (auto-hscroll-mode scrolling boolean "21.1") |
| 466 | (void-text-area-pointer cursor | 466 | (void-text-area-pointer cursor |
| 467 | (choice | 467 | (choice |
diff --git a/src/ChangeLog b/src/ChangeLog index 7f8a356eb71..e7a5b3bcc11 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-06-03 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * xdisp.c (tool-bar-style): Doc fix. | ||
| 4 | |||
| 1 | 2012-06-03 Ulrich Müller <ulm@gentoo.org> | 5 | 2012-06-03 Ulrich Müller <ulm@gentoo.org> |
| 2 | 6 | ||
| 3 | * Makefile.in (PAXCTL): Define. | 7 | * Makefile.in (PAXCTL): Define. |
diff --git a/src/xdisp.c b/src/xdisp.c index f01c86b2a07..06f6bf987fb 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Display generation from window structure and buffer text. | 1 | /* Display generation from window structure and buffer text. |
| 2 | 2 | ||
| 3 | Copyright (C) 1985-1988, 1993-1995, 1997-2012 Free Software Foundation, Inc. | 3 | Copyright (C) 1985-1988, 1993-1995, 1997-2012 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -28745,7 +28745,9 @@ It can be one of | |||
| 28745 | both - show both, text below image | 28745 | both - show both, text below image |
| 28746 | both-horiz - show text to the right of the image | 28746 | both-horiz - show text to the right of the image |
| 28747 | text-image-horiz - show text to the left of the image | 28747 | text-image-horiz - show text to the left of the image |
| 28748 | any other - use system default or image if no system default. */); | 28748 | any other - use system default or image if no system default. |
| 28749 | |||
| 28750 | This variable only affects the GTK+ toolkit version of Emacs. */); | ||
| 28749 | Vtool_bar_style = Qnil; | 28751 | Vtool_bar_style = Qnil; |
| 28750 | 28752 | ||
| 28751 | DEFVAR_INT ("tool-bar-max-label-size", tool_bar_max_label_size, | 28753 | DEFVAR_INT ("tool-bar-max-label-size", tool_bar_max_label_size, |