aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispintro
diff options
context:
space:
mode:
authorGlenn Morris2012-02-28 00:17:21 -0800
committerGlenn Morris2012-02-28 00:17:21 -0800
commit44e97401cda5b464505ac798ae7f71dce0d2a06e (patch)
tree4d24550756a7e70b8bf593edd241ed0988d60c07 /doc/lispintro
parenta34baa83cc0a770f9a5d845174281122dda91656 (diff)
downloademacs-44e97401cda5b464505ac798ae7f71dce0d2a06e.tar.gz
emacs-44e97401cda5b464505ac798ae7f71dce0d2a06e.zip
Standardize possessive apostrophe usage in manuals, docs, and comments
Ref: http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00649.html
Diffstat (limited to 'doc/lispintro')
-rw-r--r--doc/lispintro/ChangeLog4
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi26
2 files changed, 17 insertions, 13 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog
index f3a95ab85ff..adac111f5f9 100644
--- a/doc/lispintro/ChangeLog
+++ b/doc/lispintro/ChangeLog
@@ -1,3 +1,7 @@
12012-02-28 Glenn Morris <rgm@gnu.org>
2
3 * emacs-lisp-intro.texi: Standardize possessive apostrophe usage.
4
12012-02-17 Glenn Morris <rgm@gnu.org> 52012-02-17 Glenn Morris <rgm@gnu.org>
2 6
3 * emacs-lisp-intro.texi (Design @value{COUNT-WORDS}, Syntax) 7 * emacs-lisp-intro.texi (Design @value{COUNT-WORDS}, Syntax)
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index ae1e2bf0b6d..6a9927b785f 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -1015,7 +1015,7 @@ Emacs with the on-line tutorial. To use it, type @kbd{C-h t}. (This
1015means you press and release the @key{CTRL} key and the @kbd{h} at the 1015means you press and release the @key{CTRL} key and the @kbd{h} at the
1016same time, and then press and release @kbd{t}.) 1016same time, and then press and release @kbd{t}.)
1017 1017
1018Also, I often refer to one of Emacs' standard commands by listing the 1018Also, I often refer to one of Emacs's standard commands by listing the
1019keys which you press to invoke the command and then giving the name of 1019keys which you press to invoke the command and then giving the name of
1020the command in parentheses, like this: @kbd{M-C-\} 1020the command in parentheses, like this: @kbd{M-C-\}
1021(@code{indent-region}). What this means is that the 1021(@code{indent-region}). What this means is that the
@@ -1325,7 +1325,7 @@ jumps the cursor back to the matching opening parenthesis, so you can
1325see which one it is. This is very useful, since every list you type 1325see which one it is. This is very useful, since every list you type
1326in Lisp must have its closing parenthesis match its opening 1326in Lisp must have its closing parenthesis match its opening
1327parenthesis. (@xref{Major Modes, , Major Modes, emacs, The GNU Emacs 1327parenthesis. (@xref{Major Modes, , Major Modes, emacs, The GNU Emacs
1328Manual}, for more information about Emacs' modes.) 1328Manual}, for more information about Emacs's modes.)
1329 1329
1330@node Run a Program, Making Errors, Lisp Lists, List Processing 1330@node Run a Program, Making Errors, Lisp Lists, List Processing
1331@comment node-name, next, previous, up 1331@comment node-name, next, previous, up
@@ -2962,7 +2962,7 @@ have eyes. When a computer program works on a buffer, that buffer does
2962not need to be visible on the screen. 2962not need to be visible on the screen.
2963 2963
2964@code{switch-to-buffer} is designed for humans and does two different 2964@code{switch-to-buffer} is designed for humans and does two different
2965things: it switches the buffer to which Emacs' attention is directed; and 2965things: it switches the buffer to which Emacs's attention is directed; and
2966it switches the buffer displayed in the window to the new buffer. 2966it switches the buffer displayed in the window to the new buffer.
2967@code{set-buffer}, on the other hand, does only one thing: it switches 2967@code{set-buffer}, on the other hand, does only one thing: it switches
2968the attention of the computer program to a different buffer. The buffer 2968the attention of the computer program to a different buffer. The buffer
@@ -4642,7 +4642,7 @@ Select a buffer for Emacs to be active in and display it in the current
4642window so users can look at it. Usually bound to @kbd{C-x b}. 4642window so users can look at it. Usually bound to @kbd{C-x b}.
4643 4643
4644@item set-buffer 4644@item set-buffer
4645Switch Emacs' attention to a buffer on which programs will run. Don't 4645Switch Emacs's attention to a buffer on which programs will run. Don't
4646alter what the window is showing. 4646alter what the window is showing.
4647 4647
4648@item buffer-size 4648@item buffer-size
@@ -5501,7 +5501,7 @@ Written in skeletal form, the workings of the body look like this:
5501 5501
5502In summary, @code{append-to-buffer} works as follows: it saves the 5502In summary, @code{append-to-buffer} works as follows: it saves the
5503value of the current buffer in the variable called @code{oldbuf}. It 5503value of the current buffer in the variable called @code{oldbuf}. It
5504gets the new buffer (creating one if need be) and switches Emacs' 5504gets the new buffer (creating one if need be) and switches Emacs's
5505attention to it. Using the value of @code{oldbuf}, it inserts the 5505attention to it. Using the value of @code{oldbuf}, it inserts the
5506region of text from the old buffer into the new buffer; and then using 5506region of text from the old buffer into the new buffer; and then using
5507@code{save-excursion}, it brings you back to your original buffer. 5507@code{save-excursion}, it brings you back to your original buffer.
@@ -6009,7 +6009,7 @@ expression in detail. The expression looks like this:
6009@end smallexample 6009@end smallexample
6010 6010
6011@noindent 6011@noindent
6012The expression @code{(set-buffer buffer)} changes Emacs' attention 6012The expression @code{(set-buffer buffer)} changes Emacs's attention
6013from the current buffer to the one from which the text will copied. 6013from the current buffer to the one from which the text will copied.
6014In that buffer, the variables @code{start} and @code{end} are set to 6014In that buffer, the variables @code{start} and @code{end} are set to
6015the beginning and end of the buffer, using the commands 6015the beginning and end of the buffer, using the commands
@@ -15284,7 +15284,7 @@ specification. Since people worry that a computer is broken if they
15284don't see anything going on, the first line of the body is a 15284don't see anything going on, the first line of the body is a
15285message. 15285message.
15286 15286
15287The next line contains a @code{save-excursion} that returns Emacs' 15287The next line contains a @code{save-excursion} that returns Emacs's
15288attention to the current buffer when the function completes. This is 15288attention to the current buffer when the function completes. This is
15289useful in case you embed this function in another function that 15289useful in case you embed this function in another function that
15290presumes point is restored to the original buffer. 15290presumes point is restored to the original buffer.
@@ -16954,7 +16954,7 @@ Either of these two functions, @code{graph-body-print} or
16954@section Need for Printed Axes 16954@section Need for Printed Axes
16955 16955
16956A graph needs printed axes, so you can orient yourself. For a do-once 16956A graph needs printed axes, so you can orient yourself. For a do-once
16957project, it may be reasonable to draw the axes by hand using Emacs' 16957project, it may be reasonable to draw the axes by hand using Emacs's
16958Picture mode; but a graph drawing function may be used more than once. 16958Picture mode; but a graph drawing function may be used more than once.
16959 16959
16960For this reason, I have written enhancements to the basic 16960For this reason, I have written enhancements to the basic
@@ -17002,10 +17002,10 @@ expressions in Emacs Lisp you can change or extend Emacs.
17002 17002
17003@node Default Configuration, Site-wide Init, Emacs Initialization, Emacs Initialization 17003@node Default Configuration, Site-wide Init, Emacs Initialization, Emacs Initialization
17004@ifnottex 17004@ifnottex
17005@unnumberedsec Emacs' Default Configuration 17005@unnumberedsec Emacs's Default Configuration
17006@end ifnottex 17006@end ifnottex
17007 17007
17008There are those who appreciate Emacs' default configuration. After 17008There are those who appreciate Emacs's default configuration. After
17009all, Emacs starts you in C mode when you edit a C file, starts you in 17009all, Emacs starts you in C mode when you edit a C file, starts you in
17010Fortran mode when you edit a Fortran file, and starts you in 17010Fortran mode when you edit a Fortran file, and starts you in
17011Fundamental mode when you edit an unadorned file. This all makes 17011Fundamental mode when you edit an unadorned file. This all makes
@@ -17033,7 +17033,7 @@ you may. The new format is consistent with the Emacs Lisp file
17033naming conventions; the old format saves typing.} 17033naming conventions; the old format saves typing.}
17034 17034
17035A @file{~/.emacs} file contains Emacs Lisp code. You can write this 17035A @file{~/.emacs} file contains Emacs Lisp code. You can write this
17036code yourself; or you can use Emacs' @code{customize} feature to write 17036code yourself; or you can use Emacs's @code{customize} feature to write
17037the code for you. You can combine your own expressions and 17037the code for you. You can combine your own expressions and
17038auto-written Customize expressions in your @file{.emacs} file. 17038auto-written Customize expressions in your @file{.emacs} file.
17039 17039
@@ -17098,7 +17098,7 @@ initialization file.
17098@findex defcustom 17098@findex defcustom
17099 17099
17100You can specify variables using @code{defcustom} so that you and 17100You can specify variables using @code{defcustom} so that you and
17101others can then use Emacs' @code{customize} feature to set their 17101others can then use Emacs's @code{customize} feature to set their
17102values. (You cannot use @code{customize} to write function 17102values. (You cannot use @code{customize} to write function
17103definitions; but you can write @code{defuns} in your @file{.emacs} 17103definitions; but you can write @code{defuns} in your @file{.emacs}
17104file. Indeed, you can write any Lisp expression in your @file{.emacs} 17104file. Indeed, you can write any Lisp expression in your @file{.emacs}
@@ -17765,7 +17765,7 @@ the keys to @code{split-window-quietly}, like this:
17765@vindex load-path 17765@vindex load-path
17766If you load many extensions, as I do, then instead of specifying the 17766If you load many extensions, as I do, then instead of specifying the
17767exact location of the extension file, as shown above, you can specify 17767exact location of the extension file, as shown above, you can specify
17768that directory as part of Emacs' @code{load-path}. Then, when Emacs 17768that directory as part of Emacs's @code{load-path}. Then, when Emacs
17769loads a file, it will search that directory as well as its default 17769loads a file, it will search that directory as well as its default
17770list of directories. (The default list is specified in @file{paths.h} 17770list of directories. (The default list is specified in @file{paths.h}
17771when Emacs is built.) 17771when Emacs is built.)