]> git.eshelyaron.com Git - emacs.git/commitdiff
* tips.texi (Coding Conventions): Improve wording.
authorChristopher Schmidt <christopher@ch.ristopher.com>
Wed, 26 Jun 2013 15:22:21 +0000 (17:22 +0200)
committerChristopher Schmidt <christopher@ch.ristopher.com>
Wed, 26 Jun 2013 15:22:21 +0000 (17:22 +0200)
doc/lispref/ChangeLog
doc/lispref/tips.texi

index 0b94ad66bf0b1121dcc6789538c00bd5504074b8..e18db97c73b46ff6be7bf19022e7d8135a098c22 100644 (file)
@@ -1,3 +1,7 @@
+2013-06-26  Christopher Schmidt  <christopher@ch.ristopher.com>
+
+       * tips.texi (Coding Conventions): Improve wording.
+
 2013-06-24  Glenn Morris  <rgm@gnu.org>
 
        * loading.texi (Autoload): Fix typo.
index c40ae408f7f0890aaf90478aeb29b79dbae97609..2e3760e573ec1958b0576ab540ef7b245e4196d7 100644 (file)
@@ -54,12 +54,12 @@ You should choose a short word to distinguish your program from other
 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 space@footnote{The
-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 space@footnote{The 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