aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2000-01-16 00:29:04 +0000
committerRichard M. Stallman2000-01-16 00:29:04 +0000
commit05aea71425a1bba8c22b2dfc2ebc1e3510e1cbcd (patch)
tree5654410e0ec72c37c36f9d82ae4fd143a98f2de5
parentb3303df7ab109ec17cc54164f093a42cbd76f529 (diff)
downloademacs-05aea71425a1bba8c22b2dfc2ebc1e3510e1cbcd.tar.gz
emacs-05aea71425a1bba8c22b2dfc2ebc1e3510e1cbcd.zip
*** empty log message ***
-rw-r--r--lispref/debugging.texi2
-rw-r--r--lispref/display.texi12
-rw-r--r--lispref/internals.texi8
-rw-r--r--lispref/keymaps.texi4
-rw-r--r--lispref/lists.texi2
-rw-r--r--lispref/loading.texi2
-rw-r--r--lispref/modes.texi2
7 files changed, 14 insertions, 18 deletions
diff --git a/lispref/debugging.texi b/lispref/debugging.texi
index f8028404156..d8b465a29cb 100644
--- a/lispref/debugging.texi
+++ b/lispref/debugging.texi
@@ -140,7 +140,7 @@ enter the debugger.
140 140
141 To debug an error that happens during loading of the init 141 To debug an error that happens during loading of the init
142file, use the option @samp{--debug-init}. This binds 142file, use the option @samp{--debug-init}. This binds
143@code{debug-on-error} to @code{t} while loading the init file., and 143@code{debug-on-error} to @code{t} while loading the init file, and
144bypasses the @code{condition-case} which normally catches errors in the 144bypasses the @code{condition-case} which normally catches errors in the
145init file. 145init file.
146 146
diff --git a/lispref/display.texi b/lispref/display.texi
index b519f2a2292..47b4a8e07e5 100644
--- a/lispref/display.texi
+++ b/lispref/display.texi
@@ -1009,7 +1009,7 @@ foo
1009 @result{} 20 1009 @result{} 20
1010(overlay-buffer foo) 1010(overlay-buffer foo)
1011 @result{} #<buffer display.texi> 1011 @result{} #<buffer display.texi>
1012;; @r{Moving and deleting the overlay don't change its properties.} 1012;; @r{Moving and deleting the overlay does not change its properties.}
1013(overlay-get foo 'happy) 1013(overlay-get foo 'happy)
1014 @result{} t 1014 @result{} t
1015@end example 1015@end example
@@ -1411,10 +1411,6 @@ or @code{ultra-light}.
1411 1411
1412On a text-only terminal, any weight greater than normal is displayed as 1412On a text-only terminal, any weight greater than normal is displayed as
1413extra bright, and any weight less than normal is displayed as 1413extra bright, and any weight less than normal is displayed as
1414half-bright (This is provided the terminal supports the feature.)
1415
1416On a text-only terminal, any weight greater than normal is displayed as
1417extra bright, and any weight less than normal is displayed as
1418half-bright (provided the terminal supports the feature). 1414half-bright (provided the terminal supports the feature).
1419 1415
1420@item :slant 1416@item :slant
@@ -2692,7 +2688,7 @@ This function removes images in @var{buffer} between positions
2692@var{start} and @var{end}. If @var{buffer} is omitted or @code{nil}, 2688@var{start} and @var{end}. If @var{buffer} is omitted or @code{nil},
2693images are removed from the current buffer. 2689images are removed from the current buffer.
2694 2690
2695This remove only images that were put into @var{buffer} the way 2691This removes only images that were put into @var{buffer} the way
2696@code{put-image} does it, not images that were inserted with 2692@code{put-image} does it, not images that were inserted with
2697@code{insert-image} or in other ways. 2693@code{insert-image} or in other ways.
2698@end defun 2694@end defun
@@ -2796,7 +2792,7 @@ default is @code{nil}.
2796@defopt mode-line-inverse-video 2792@defopt mode-line-inverse-video
2797This variable controls the use of inverse video for mode lines and menu 2793This variable controls the use of inverse video for mode lines and menu
2798bars. If it is non-@code{nil}, then these lines are displayed in 2794bars. If it is non-@code{nil}, then these lines are displayed in
2799inverse video. Otherwise, they lines are displayed normally, just like 2795inverse video. Otherwise, these lines are displayed normally, just like
2800other text. The default is @code{t}. 2796other text. The default is @code{t}.
2801 2797
2802For window frames, this feature actually applies the face named 2798For window frames, this feature actually applies the face named
@@ -3166,7 +3162,7 @@ Emacs is displaying using X.
3166@item pc 3162@item pc
3167Emacs is displaying using MS-DOS. 3163Emacs is displaying using MS-DOS.
3168@item w32 3164@item w32
3169Emacs is displaying using Windows NT or Windows 9x. 3165Emacs is displaying using Windows.
3170@item mac 3166@item mac
3171Emacs is displaying using a Macintosh. 3167Emacs is displaying using a Macintosh.
3172@item nil 3168@item nil
diff --git a/lispref/internals.texi b/lispref/internals.texi
index 91fae116869..ccef54b2b77 100644
--- a/lispref/internals.texi
+++ b/lispref/internals.texi
@@ -216,7 +216,7 @@ to them, since there is no longer a way to reach them. Their space
216might as well be reused, since no one will miss them. The second 216might as well be reused, since no one will miss them. The second
217(``sweep'') phase of the garbage collector arranges to reuse them. 217(``sweep'') phase of the garbage collector arranges to reuse them.
218 218
219??? Maybe add something describing weak hash tables here? 219@c ??? Maybe add something describing weak hash tables here?
220 220
221@cindex free list 221@cindex free list
222 The sweep phase puts unused cons cells onto a @dfn{free list} 222 The sweep phase puts unused cons cells onto a @dfn{free list}
@@ -562,7 +562,7 @@ you use @code{GCPRO2}, you must declare @code{gcpro1} and @code{gcpro2}.
562Alas, we can't explain all the tricky details here. 562Alas, we can't explain all the tricky details here.
563 563
564 You must not use C initializers for static or global variables unless 564 You must not use C initializers for static or global variables unless
565the variables are never stored in once Emacs is dumped. These variables 565the variables are never written once Emacs is dumped. These variables
566with initializers are allocated in an area of memory that becomes 566with initializers are allocated in an area of memory that becomes
567read-only (on certain operating systems) as a result of dumping Emacs. 567read-only (on certain operating systems) as a result of dumping Emacs.
568@xref{Pure Storage}. 568@xref{Pure Storage}.
@@ -745,7 +745,7 @@ Here is a list of the @code{struct buffer_text} fields:
745 745
746@table @code 746@table @code
747@item beg 747@item beg
748This field contains the Actual address of the buffer contents. 748This field contains the actual address of the buffer contents.
749 749
750@item got 750@item got
751This holds the character position of the gap in the buffer. 751This holds the character position of the gap in the buffer.
@@ -879,7 +879,7 @@ the last time the buffer was displayed in a window.
879This flag is set when narrowing changes in a buffer. 879This flag is set when narrowing changes in a buffer.
880 880
881@item prevent_redisplay_optimizations_p 881@item prevent_redisplay_optimizations_p
882A flag indicating the redisplay optiomizations should not be used 882this flag indicates that redisplay optimizations should not be used
883to display this buffer. 883to display this buffer.
884 884
885@item undo_list 885@item undo_list
diff --git a/lispref/keymaps.texi b/lispref/keymaps.texi
index f7a509920fd..0641a2e3fe6 100644
--- a/lispref/keymaps.texi
+++ b/lispref/keymaps.texi
@@ -2094,7 +2094,7 @@ commands when you click on them---in effect, a kind of graphical menu
2094bar. Emacs supports tool bars starting with version 21. 2094bar. Emacs supports tool bars starting with version 21.
2095 2095
2096 The frame parameter @code{tool-bar-lines} (X resource @samp{toolBar}) 2096 The frame parameter @code{tool-bar-lines} (X resource @samp{toolBar})
2097controls how may lines' worth of height to reserve for the tool bar. A 2097controls how many lines' worth of height to reserve for the tool bar. A
2098zero value suppresses the tool bar. If the value is nonzero, and 2098zero value suppresses the tool bar. If the value is nonzero, and
2099@code{auto-resize-tool-bars} is non-@code{nil}, the tool bar expands and 2099@code{auto-resize-tool-bars} is non-@code{nil}, the tool bar expands and
2100contracts automatically as needed to hold the specified contents. 2100contracts automatically as needed to hold the specified contents.
@@ -2133,7 +2133,7 @@ one of them is used, depending on circumstances:
2133 2133
2134@table @asis 2134@table @asis
2135@item item 0 2135@item item 0
2136Used when the iitem is enabled and selected. 2136Used when the item is enabled and selected.
2137@item item 1 2137@item item 1
2138Used when the item is enabled and deselected. 2138Used when the item is enabled and deselected.
2139@item item 2 2139@item item 2
diff --git a/lispref/lists.texi b/lispref/lists.texi
index da12dcf0030..661c8c35308 100644
--- a/lispref/lists.texi
+++ b/lispref/lists.texi
@@ -42,7 +42,7 @@ see @ref{Cons Cell Type}.) @sc{cdr} is pronounced ``could-er.''
42its @sc{car} slot currently holds, and likewise for the @sc{cdr}. 42its @sc{car} slot currently holds, and likewise for the @sc{cdr}.
43 43
44 A list is a series of cons cells ``chained together,'' so that each 44 A list is a series of cons cells ``chained together,'' so that each
45cell refers to the next one. There one cons cell for each element of 45cell refers to the next one. There is one cons cell for each element of
46the list. By convention, the @sc{car}s of the cons cells hold the 46the list. By convention, the @sc{car}s of the cons cells hold the
47elements of the list, and the @sc{cdr}s are used to chain the list: the 47elements of the list, and the @sc{cdr}s are used to chain the list: the
48@sc{cdr} slot of each cons cell refers to the following cons cell. The 48@sc{cdr} slot of each cons cell refers to the following cons cell. The
diff --git a/lispref/loading.texi b/lispref/loading.texi
index 2901522fe24..4303d9a330f 100644
--- a/lispref/loading.texi
+++ b/lispref/loading.texi
@@ -756,7 +756,7 @@ rather than replacing that element. @xref{Eval}.
756 756
757 Preloaded libraries don't contribute initially to @code{load-history}. 757 Preloaded libraries don't contribute initially to @code{load-history}.
758Instead, preloading writes information about preloaded libraries into a 758Instead, preloading writes information about preloaded libraries into a
759file, which can be loaded later on to to add information to 759file, which can be loaded later on to add information to
760@code{load-history} describing the preloaded files. This file is 760@code{load-history} describing the preloaded files. This file is
761installed in @code{exec-directory} and has a name of the form 761installed in @code{exec-directory} and has a name of the form
762@file{fns-@var{emacsversion}.el}. 762@file{fns-@var{emacsversion}.el}.
diff --git a/lispref/modes.texi b/lispref/modes.texi
index 365fdb9bdf2..22d09284d74 100644
--- a/lispref/modes.texi
+++ b/lispref/modes.texi
@@ -1644,7 +1644,7 @@ variables @code{imenu-prev-index-position-function} and
1644@code{imenu-extract-index-name-function}: 1644@code{imenu-extract-index-name-function}:
1645 1645
1646@defvar imenu-prev-index-position-function 1646@defvar imenu-prev-index-position-function
1647If this variable is non-@code{nil}, its value should be a funtion that 1647If this variable is non-@code{nil}, its value should be a function that
1648finds the next ``definition'' to put in the buffer index, scanning 1648finds the next ``definition'' to put in the buffer index, scanning
1649backward in the buffer from point. It should return @code{nil} if it 1649backward in the buffer from point. It should return @code{nil} if it
1650doesn't find another ``definition'' before point. Otherwise it shuould 1650doesn't find another ``definition'' before point. Otherwise it shuould