aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann1999-10-27 09:26:40 +0000
committerGerd Moellmann1999-10-27 09:26:40 +0000
commit513331d3298cfc76f75996effbe738308eed4f6f (patch)
tree307eb03546b7712c434c86dd60bff4471428e0b6
parent04c1025b883c8ddcfac3ada649641a56f08aae95 (diff)
downloademacs-513331d3298cfc76f75996effbe738308eed4f6f.tar.gz
emacs-513331d3298cfc76f75996effbe738308eed4f6f.zip
Patch from rms.
-rw-r--r--lispref/elisp.texi3
-rw-r--r--lispref/frames.texi2
-rw-r--r--lispref/modes.texi2
-rw-r--r--lispref/os.texi2
-rw-r--r--lispref/tips.texi4
-rw-r--r--lispref/windows.texi2
6 files changed, 8 insertions, 7 deletions
diff --git a/lispref/elisp.texi b/lispref/elisp.texi
index abd62b9fcb0..840f84f7920 100644
--- a/lispref/elisp.texi
+++ b/lispref/elisp.texi
@@ -184,6 +184,7 @@ Reference Manual, corresponding to GNU Emacs version 21.1.
184 184
185Appendices 185Appendices
186 186
187* Antinews:: Info for users downgrading to Emacs 20.
187* Tips:: Advice and coding conventions for Emacs Lisp. 188* Tips:: Advice and coding conventions for Emacs Lisp.
188* GNU Emacs Internals:: Building and dumping Emacs; 189* GNU Emacs Internals:: Building and dumping Emacs;
189 internal data structures. 190 internal data structures.
@@ -953,9 +954,9 @@ Object Internals
953@include abbrevs.texi 954@include abbrevs.texi
954@include processes.texi 955@include processes.texi
955 956
956@include os.texi
957@include display.texi 957@include display.texi
958@include calendar.texi 958@include calendar.texi
959@include os.texi
959 960
960@c MOVE to Emacs Manual: include misc-modes.texi 961@c MOVE to Emacs Manual: include misc-modes.texi
961 962
diff --git a/lispref/frames.texi b/lispref/frames.texi
index 34525fed808..3e8f3f301e3 100644
--- a/lispref/frames.texi
+++ b/lispref/frames.texi
@@ -1485,7 +1485,7 @@ or @code{(@var{name} @var{number})}. Here, @var{name} is the color
1485name, @var{number} is the number used to specify it to the terminal. 1485name, @var{number} is the number used to specify it to the terminal.
1486If present, @var{rgb} is an rgb value that says what the color 1486If present, @var{rgb} is an rgb value that says what the color
1487actually looks like. 1487actually looks like.
1488@end defun 1488@end defvar
1489 1489
1490@defun tty-color-approximate rgb 1490@defun tty-color-approximate rgb
1491@tindex tty-color-approximate 1491@tindex tty-color-approximate
diff --git a/lispref/modes.texi b/lispref/modes.texi
index 727851f59c7..d6c14e521ca 100644
--- a/lispref/modes.texi
+++ b/lispref/modes.texi
@@ -1352,7 +1352,7 @@ The default value of @code{default-mode-line-format} is this list:
1352@group 1352@group
1353 " %[(" 1353 " %[("
1354 ;; @r{@code{mode-line-mode-name} is a function} 1354 ;; @r{@code{mode-line-mode-name} is a function}
1355 ;; @r{that copies the mode name and adds text 1355 ;; @r{that copies the mode name and adds text}
1356 ;; @r{properties to make it mouse-sensitive.} 1356 ;; @r{properties to make it mouse-sensitive.}
1357 (:eval (mode-line-mode-name)) 1357 (:eval (mode-line-mode-name))
1358 mode-line-process 1358 mode-line-process
diff --git a/lispref/os.texi b/lispref/os.texi
index b24c1a41698..68cfacd4693 100644
--- a/lispref/os.texi
+++ b/lispref/os.texi
@@ -3,7 +3,7 @@
3@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998 Free Software Foundation, Inc. 3@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998 Free Software Foundation, Inc.
4@c See the file elisp.texi for copying conditions. 4@c See the file elisp.texi for copying conditions.
5@setfilename ../info/os 5@setfilename ../info/os
6@node System Interface, Tips, Calendar, Top 6@node System Interface, Antinews, Calendar, Top
7@chapter Operating System Interface 7@chapter Operating System Interface
8 8
9 This chapter is about starting and getting out of Emacs, access to 9 This chapter is about starting and getting out of Emacs, access to
diff --git a/lispref/tips.texi b/lispref/tips.texi
index 5ce4c437176..03e767f2f28 100644
--- a/lispref/tips.texi
+++ b/lispref/tips.texi
@@ -3,7 +3,7 @@
3@c Copyright (C) 1990, 1991, 1992, 1993, 1995, 1998 Free Software Foundation, Inc. 3@c Copyright (C) 1990, 1991, 1992, 1993, 1995, 1998 Free Software Foundation, Inc.
4@c See the file elisp.texi for copying conditions. 4@c See the file elisp.texi for copying conditions.
5@setfilename ../info/tips 5@setfilename ../info/tips
6@node Tips, GNU Emacs Internals, System Interface, Top 6@node Tips, GNU Emacs Internals, Antinews, Top
7@appendix Tips and Conventions 7@appendix Tips and Conventions
8@cindex tips 8@cindex tips
9@cindex standards of coding style 9@cindex standards of coding style
@@ -295,7 +295,7 @@ Try to avoid compiler warnings about undefined free variables, by adding
295 295
296Sometimes adding a @code{require} for another package is useful to avoid 296Sometimes adding a @code{require} for another package is useful to avoid
297compilation warnings for variables and functions defined in that 297compilation warnings for variables and functions defined in that
298package. If you do this, often it is better if the @cpde{require} acts 298package. If you do this, often it is better if the @code{require} acts
299only at compile time. Here's how to do that: 299only at compile time. Here's how to do that:
300 300
301@example 301@example
diff --git a/lispref/windows.texi b/lispref/windows.texi
index c583df2887c..eedc030d26e 100644
--- a/lispref/windows.texi
+++ b/lispref/windows.texi
@@ -272,7 +272,7 @@ You could define a simplified version of the function like this:
272(defun split-window-horizontally (&optional arg) 272(defun split-window-horizontally (&optional arg)
273 "Split selected window into two windows, side by side..." 273 "Split selected window into two windows, side by side..."
274 (interactive "P") 274 (interactive "P")
275@endgroup 275@end group
276@group 276@group
277 (let ((size (and arg (prefix-numeric-value arg)))) 277 (let ((size (and arg (prefix-numeric-value arg))))
278 (and size (< size 0) 278 (and size (< size 0)