]> code.delx.au - gnu-emacs/commitdiff
Patch from rms.
authorGerd Moellmann <gerd@gnu.org>
Wed, 27 Oct 1999 09:26:40 +0000 (09:26 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 27 Oct 1999 09:26:40 +0000 (09:26 +0000)
lispref/elisp.texi
lispref/frames.texi
lispref/modes.texi
lispref/os.texi
lispref/tips.texi
lispref/windows.texi

index abd62b9fcb048b19fbeb534ead00e6a8e66feac2..840f84f7920da3b396cbae4535085ce8a0f03789 100644 (file)
@@ -184,6 +184,7 @@ Reference Manual, corresponding to GNU Emacs version 21.1.
 
 Appendices
 
+* Antinews::                Info for users downgrading to Emacs 20.
 * Tips::                    Advice and coding conventions for Emacs Lisp.
 * GNU Emacs Internals::     Building and dumping Emacs;
                               internal data structures.
@@ -953,9 +954,9 @@ Object Internals
 @include abbrevs.texi
 @include processes.texi
 
-@include os.texi
 @include display.texi
 @include calendar.texi
+@include os.texi
 
 @c MOVE to Emacs Manual:  include misc-modes.texi
 
index 34525fed808724575bd3c70759479d5b3f93b297..3e8f3f301e30e62c6c70c1991df84a9a12316f61 100644 (file)
@@ -1485,7 +1485,7 @@ or @code{(@var{name} @var{number})}.  Here, @var{name} is the color
 name, @var{number} is the number used to specify it to the terminal.
 If present, @var{rgb} is an rgb value that says what the color
 actually looks like.
-@end defun
+@end defvar
 
 @defun tty-color-approximate rgb
 @tindex tty-color-approximate
index 727851f59c73998be0d27593dcf32bd2a03e4938..d6c14e521caec9a9dbd4a44f3464da214e30aef0 100644 (file)
@@ -1352,7 +1352,7 @@ The default value of @code{default-mode-line-format} is this list:
 @group
  "   %[("
  ;; @r{@code{mode-line-mode-name} is a function}
- ;; @r{that copies the mode name and adds text
+ ;; @r{that copies the mode name and adds text}
  ;; @r{properties to make it mouse-sensitive.}
  (:eval (mode-line-mode-name))
  mode-line-process
index b24c1a416986fb597ce83ffed33f899e8160855e..68cfacd4693a2d5b2376383992e85d3e2d59f46f 100644 (file)
@@ -3,7 +3,7 @@
 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998 Free Software Foundation, Inc. 
 @c See the file elisp.texi for copying conditions.
 @setfilename ../info/os
-@node System Interface, Tips, Calendar, Top
+@node System Interface, Antinews, Calendar, Top
 @chapter Operating System Interface
 
   This chapter is about starting and getting out of Emacs, access to
index 5ce4c437176bb902335cf26af3d4f34a6256867b..03e767f2f28a58601bab960d7d1aba13a774b37e 100644 (file)
@@ -3,7 +3,7 @@
 @c Copyright (C) 1990, 1991, 1992, 1993, 1995, 1998 Free Software Foundation, Inc. 
 @c See the file elisp.texi for copying conditions.
 @setfilename ../info/tips
-@node Tips, GNU Emacs Internals, System Interface, Top
+@node Tips, GNU Emacs Internals, Antinews, Top
 @appendix Tips and Conventions
 @cindex tips
 @cindex standards of coding style
@@ -295,7 +295,7 @@ Try to avoid compiler warnings about undefined free variables, by adding
 
 Sometimes adding a @code{require} for another package is useful to avoid
 compilation warnings for variables and functions defined in that
-package.  If you do this, often it is better if the @cpde{require} acts
+package.  If you do this, often it is better if the @code{require} acts
 only at compile time.  Here's how to do that:
 
 @example
index c583df2887c08025fdb336ed3622f9d560456440..eedc030d26e238024256796c806d67053e96da94 100644 (file)
@@ -272,7 +272,7 @@ You could define a simplified version of the function like this:
 (defun split-window-horizontally (&optional arg)
   "Split selected window into two windows, side by side..."
   (interactive "P")
-@endgroup
+@end group
 @group
   (let ((size (and arg (prefix-numeric-value arg))))
     (and size (< size 0)