# HG changeset patch # User Gerd Moellmann # Date 941016400 0 # Node ID df0efa93750be9e2b71a824ab4e636af69ab236f # Parent fc4fefae99704330db21a5d823e658dd4b521ee9 Patch from rms. diff -r fc4fefae9970 -r df0efa93750b lispref/elisp.texi --- a/lispref/elisp.texi Wed Oct 27 09:08:15 1999 +0000 +++ b/lispref/elisp.texi Wed Oct 27 09:26:40 1999 +0000 @@ -184,6 +184,7 @@ 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 @@ @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 diff -r fc4fefae9970 -r df0efa93750b lispref/frames.texi --- a/lispref/frames.texi Wed Oct 27 09:08:15 1999 +0000 +++ b/lispref/frames.texi Wed Oct 27 09:26:40 1999 +0000 @@ -1485,7 +1485,7 @@ 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 diff -r fc4fefae9970 -r df0efa93750b lispref/modes.texi --- a/lispref/modes.texi Wed Oct 27 09:08:15 1999 +0000 +++ b/lispref/modes.texi Wed Oct 27 09:26:40 1999 +0000 @@ -1352,7 +1352,7 @@ @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 diff -r fc4fefae9970 -r df0efa93750b lispref/os.texi --- a/lispref/os.texi Wed Oct 27 09:08:15 1999 +0000 +++ b/lispref/os.texi Wed Oct 27 09:26:40 1999 +0000 @@ -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 diff -r fc4fefae9970 -r df0efa93750b lispref/tips.texi --- a/lispref/tips.texi Wed Oct 27 09:08:15 1999 +0000 +++ b/lispref/tips.texi Wed Oct 27 09:26:40 1999 +0000 @@ -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 @@ 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 diff -r fc4fefae9970 -r df0efa93750b lispref/windows.texi --- a/lispref/windows.texi Wed Oct 27 09:08:15 1999 +0000 +++ b/lispref/windows.texi Wed Oct 27 09:26:40 1999 +0000 @@ -272,7 +272,7 @@ (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)