aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMiles Bader2007-11-09 09:45:30 +0000
committerMiles Bader2007-11-09 09:45:30 +0000
commitc12ecb0af9679cc0e2fa0409931c34c035763469 (patch)
treebd118c7ebc571de0dab542f48ad0c1648c6ccf72 /doc
parente83d1fe87564d06d2fcbb4006dfd9133bc340aa8 (diff)
parent9d2185d10e3da9062672d96d3b59fcea31ff17ed (diff)
downloademacs-c12ecb0af9679cc0e2fa0409931c34c035763469.tar.gz
emacs-c12ecb0af9679cc0e2fa0409931c34c035763469.zip
Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-923
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/ChangeLog17
-rw-r--r--doc/emacs/building.texi7
-rw-r--r--doc/misc/widget.texi13
3 files changed, 24 insertions, 13 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index 32617c97b20..7685a3ce789 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,11 @@
12007-11-09 Reiner Steib <Reiner.Steib@gmx.de>
2
3 * gnus.texi, gnus-faq.texi, message.texi: Bump version to 5.10.9.
4
52007-11-09 Nick Roberts <nickrob@snap.net.nz>
6
7 * building.texi (Watch Expressions): Remove obscure sentence.
8
12007-11-06 Kenichi Handa <handa@ni.aist.go.jp> 92007-11-06 Kenichi Handa <handa@ni.aist.go.jp>
2 10
3 * mule.texi (Select Input Method): Describe how to activate an input 11 * mule.texi (Select Input Method): Describe how to activate an input
@@ -15,11 +23,20 @@
15 23
16 * gnus.texi (Troubleshooting): Adjust Gnus version number. 24 * gnus.texi (Troubleshooting): Adjust Gnus version number.
17 25
262007-10-30 Nick Roberts <nickrob@snap.net.nz>
27
28 * building.texi (Watch Expressions): Describe gdb-delete-out-of-scope.
29
182007-10-30 Glenn Morris <rgm@gnu.org> 302007-10-30 Glenn Morris <rgm@gnu.org>
19 31
20 * misc.texi (Directory Tracking): Explain a bit more about 32 * misc.texi (Directory Tracking): Explain a bit more about
21 dirtrack-mode. 33 dirtrack-mode.
22 34
352007-10-29 Richard Stallman <rms@gnu.org>
36
37 * widget.texi (Introduction): Delete discussion of implementation
38 internals.
39
232007-10-25 Glenn Morris <rgm@gnu.org> 402007-10-25 Glenn Morris <rgm@gnu.org>
24 41
25 * fortran-xtra.texi (Fortran): F90 mode handles F2003. 42 * fortran-xtra.texi (Fortran): F90 mode handles F2003.
diff --git a/doc/emacs/building.texi b/doc/emacs/building.texi
index 45210118f77..a8bea90a635 100644
--- a/doc/emacs/building.texi
+++ b/doc/emacs/building.texi
@@ -1121,6 +1121,13 @@ changed and @code{shadow} face to make variables which have gone out of
1121scope less noticeable. When a variable goes out of scope you can't 1121scope less noticeable. When a variable goes out of scope you can't
1122edit its value. 1122edit its value.
1123 1123
1124@vindex gdb-delete-out-of-scope
1125 If the variable @code{gdb-delete-out-of-scope} is non-@code{nil}
1126(the default value), Emacs automatically deletes watch expressions
1127which go out of scope. Sometimes, when re-entering the same function,
1128it may be useful to set this value to nil so that you don't need to
1129recreate the watch expression.
1130
1124@vindex gdb-use-colon-colon-notation 1131@vindex gdb-use-colon-colon-notation
1125 If the variable @code{gdb-use-colon-colon-notation} is 1132 If the variable @code{gdb-use-colon-colon-notation} is
1126non-@code{nil}, Emacs uses the @samp{@var{function}::@var{variable}} 1133non-@code{nil}, Emacs uses the @samp{@var{function}::@var{variable}}
diff --git a/doc/misc/widget.texi b/doc/misc/widget.texi
index 35f0722406e..49b2976472e 100644
--- a/doc/misc/widget.texi
+++ b/doc/misc/widget.texi
@@ -142,19 +142,6 @@ extended to use the GUI features. This means that your code using the
142widget library will also use the new graphic features automatically. 142widget library will also use the new graphic features automatically.
143@end enumerate 143@end enumerate
144 144
145In order to minimize the code that is loaded by users who do not
146create any widgets, the code has been split in two files:
147
148@cindex widget library, files
149@table @file
150@item widget.el
151This will declare the user variables, define the function
152@code{define-widget}, and autoload the function @code{widget-create}.
153@item wid-edit.el
154Everything else is here, there is no reason to load it explicitly, as
155it will be autoloaded when needed.
156@end table
157
158@node User Interface, Programming Example, Introduction, Top 145@node User Interface, Programming Example, Introduction, Top
159@comment node-name, next, previous, up 146@comment node-name, next, previous, up
160@section User Interface 147@section User Interface