emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r113188: * tips.texi (Coding Conventions): Improve w


From: Christopher Schmidt
Subject: [Emacs-diffs] trunk r113188: * tips.texi (Coding Conventions): Improve wording.
Date: Wed, 26 Jun 2013 15:25:51 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113188
revision-id: address@hidden
parent: address@hidden
committer: Christopher Schmidt <address@hidden>
branch nick: emacs-trunk
timestamp: Wed 2013-06-26 17:22:21 +0200
message:
  * tips.texi (Coding Conventions): Improve wording.
modified:
  doc/lispref/ChangeLog          changelog-20091113204419-o5vbwnq5f7feedwu-6155
  doc/lispref/tips.texi          tips.texi-20091113204419-o5vbwnq5f7feedwu-6217
=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2013-06-24 06:58:52 +0000
+++ b/doc/lispref/ChangeLog     2013-06-26 15:22:21 +0000
@@ -1,3 +1,7 @@
+2013-06-26  Christopher Schmidt  <address@hidden>
+
+       * tips.texi (Coding Conventions): Improve wording.
+
 2013-06-24  Glenn Morris  <address@hidden>
 
        * loading.texi (Autoload): Fix typo.

=== modified file 'doc/lispref/tips.texi'
--- a/doc/lispref/tips.texi     2013-04-15 17:01:00 +0000
+++ b/doc/lispref/tips.texi     2013-06-26 15:22:21 +0000
@@ -54,12 +54,12 @@
 Lisp programs.  The names of all global symbols in your program, that
 is the names of variables, constants, and functions, should begin with
 that chosen prefix.  Separate the prefix from the rest of the name
-with a hyphen, @samp{-}.  Use two hyphens if the symbol is not meant
-to be used by other packages.  This practice helps avoid name
-conflicts, since all global variables in Emacs Lisp share the same
-name space, and all functions share another name address@hidden
-benefits of a Common Lisp-style package system are considered not to
-outweigh the costs.}.
+with a hyphen, @samp{-}.  This practice helps avoid name conflicts,
+since all global variables in Emacs Lisp share the same name space,
+and all functions share another name address@hidden benefits of a
+Common Lisp-style package system are considered not to outweigh the
+costs.}.  Use two hyphens to separate prefix and name if the symbol is
+not meant to be used by other packages.
 
 Occasionally, for a command name intended for users to use, it is more
 convenient if some words come before the package's name prefix.  And


reply via email to

[Prev in Thread] Current Thread [Next in Thread]