]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bug #15038 with incorrect Texinfo in Emacs Lisp Intro manual.
authorEli Zaretskii <eliz@gnu.org>
Wed, 7 Aug 2013 13:58:41 +0000 (16:58 +0300)
committerEli Zaretskii <eliz@gnu.org>
Wed, 7 Aug 2013 13:58:41 +0000 (16:58 +0300)
 doc/lispintro/emacs-lisp-intro.texi (Beginning init File): Rename from
 "Beginning a .emacs File", since a node name cannot include a
 period.
 (Top, Emacs Initialization, Change a defun): All references
 changed.

doc/lispintro/ChangeLog
doc/lispintro/emacs-lisp-intro.texi

index 481eb0c9db8f4371ec0b5299019409630a5c1669..7f1f9ab18c0a581ae0152116a1faaf8a56260761 100644 (file)
@@ -1,3 +1,11 @@
+2013-08-07  Eli Zaretskii  <eliz@gnu.org>
+
+       * emacs-lisp-intro.texi (Beginning init File): Rename from
+       "Beginning a .emacs File", since a node name cannot include a
+       period.
+       (Top, Emacs Initialization, Change a defun): All references
+       changed.  (Bug#15038)
+
 2013-08-02  Xue Fuqiao  <xfq.free@gmail.com>
 
        * emacs-lisp-intro.texi (zap-to-char): Remove obsolete stuff.
index f0d9ab63935c13c83a0ac0692dc5e24a50a11a5e..2160d7ba5a9aa77e69f760c893dbdb85569ff2e8 100644 (file)
@@ -648,7 +648,7 @@ Your @file{.emacs} File
 * Default Configuration::
 * Site-wide Init::              You can write site-wide init files.
 * defcustom::                   Emacs will write code for you.
-* Beginning a .emacs File::     How to write a @code{.emacs file}.
+* Beginning init File::         How to write a @file{.emacs} init file.
 * Text and Auto-fill::          Automatically wrap lines.
 * Mail Aliases::                Use abbreviations for email addresses.
 * Indent Tabs Mode::            Don't use tabs with @TeX{}
@@ -3260,7 +3260,7 @@ line that follows a semicolon is a comment.  The end of the line is the
 end of the comment.  To stretch a comment over two or more lines, begin
 each line with a semicolon.
 
-@xref{Beginning a .emacs File, , Beginning a @file{.emacs}
+@xref{Beginning init File, , Beginning a @file{.emacs}
 File}, and @ref{Comments, , Comments, elisp, The GNU Emacs Lisp
 Reference Manual}, for more about comments.
 
@@ -16706,7 +16706,7 @@ expressions in Emacs Lisp you can change or extend Emacs.
 * Default Configuration::
 * Site-wide Init::              You can write site-wide init files.
 * defcustom::                   Emacs will write code for you.
-* Beginning a .emacs File::     How to write a @code{.emacs file}.
+* Beginning init File::         How to write a @file{.emacs} init file.
 * Text and Auto-fill::          Automatically wrap lines.
 * Mail Aliases::                Use abbreviations for email addresses.
 * Indent Tabs Mode::            Don't use tabs with @TeX{}
@@ -16977,7 +16977,7 @@ intent is that neither programs nor users should ever change a value
 set by @code{defconst}.  (You can change it; the value set is a
 variable; but please do not.)
 
-@node Beginning a .emacs File
+@node Beginning init File
 @section Beginning a @file{.emacs} File
 @cindex @file{.emacs} file, beginning of