diff options
| author | Glenn Morris | 2012-02-28 00:17:21 -0800 |
|---|---|---|
| committer | Glenn Morris | 2012-02-28 00:17:21 -0800 |
| commit | 44e97401cda5b464505ac798ae7f71dce0d2a06e (patch) | |
| tree | 4d24550756a7e70b8bf593edd241ed0988d60c07 /doc/lispintro | |
| parent | a34baa83cc0a770f9a5d845174281122dda91656 (diff) | |
| download | emacs-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/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 26 |
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 @@ | |||
| 1 | 2012-02-28 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp-intro.texi: Standardize possessive apostrophe usage. | ||
| 4 | |||
| 1 | 2012-02-17 Glenn Morris <rgm@gnu.org> | 5 | 2012-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 | |||
| 1015 | means you press and release the @key{CTRL} key and the @kbd{h} at the | 1015 | means you press and release the @key{CTRL} key and the @kbd{h} at the |
| 1016 | same time, and then press and release @kbd{t}.) | 1016 | same time, and then press and release @kbd{t}.) |
| 1017 | 1017 | ||
| 1018 | Also, I often refer to one of Emacs' standard commands by listing the | 1018 | Also, I often refer to one of Emacs's standard commands by listing the |
| 1019 | keys which you press to invoke the command and then giving the name of | 1019 | keys which you press to invoke the command and then giving the name of |
| 1020 | the command in parentheses, like this: @kbd{M-C-\} | 1020 | the 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 | |||
| 1325 | see which one it is. This is very useful, since every list you type | 1325 | see which one it is. This is very useful, since every list you type |
| 1326 | in Lisp must have its closing parenthesis match its opening | 1326 | in Lisp must have its closing parenthesis match its opening |
| 1327 | parenthesis. (@xref{Major Modes, , Major Modes, emacs, The GNU Emacs | 1327 | parenthesis. (@xref{Major Modes, , Major Modes, emacs, The GNU Emacs |
| 1328 | Manual}, for more information about Emacs' modes.) | 1328 | Manual}, 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 | |||
| 2962 | not need to be visible on the screen. | 2962 | not 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 |
| 2965 | things: it switches the buffer to which Emacs' attention is directed; and | 2965 | things: it switches the buffer to which Emacs's attention is directed; and |
| 2966 | it switches the buffer displayed in the window to the new buffer. | 2966 | it 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 |
| 2968 | the attention of the computer program to a different buffer. The buffer | 2968 | the 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 | |||
| 4642 | window so users can look at it. Usually bound to @kbd{C-x b}. | 4642 | window so users can look at it. Usually bound to @kbd{C-x b}. |
| 4643 | 4643 | ||
| 4644 | @item set-buffer | 4644 | @item set-buffer |
| 4645 | Switch Emacs' attention to a buffer on which programs will run. Don't | 4645 | Switch Emacs's attention to a buffer on which programs will run. Don't |
| 4646 | alter what the window is showing. | 4646 | alter 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 | ||
| 5502 | In summary, @code{append-to-buffer} works as follows: it saves the | 5502 | In summary, @code{append-to-buffer} works as follows: it saves the |
| 5503 | value of the current buffer in the variable called @code{oldbuf}. It | 5503 | value of the current buffer in the variable called @code{oldbuf}. It |
| 5504 | gets the new buffer (creating one if need be) and switches Emacs' | 5504 | gets the new buffer (creating one if need be) and switches Emacs's |
| 5505 | attention to it. Using the value of @code{oldbuf}, it inserts the | 5505 | attention to it. Using the value of @code{oldbuf}, it inserts the |
| 5506 | region of text from the old buffer into the new buffer; and then using | 5506 | region 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 |
| 6012 | The expression @code{(set-buffer buffer)} changes Emacs' attention | 6012 | The expression @code{(set-buffer buffer)} changes Emacs's attention |
| 6013 | from the current buffer to the one from which the text will copied. | 6013 | from the current buffer to the one from which the text will copied. |
| 6014 | In that buffer, the variables @code{start} and @code{end} are set to | 6014 | In that buffer, the variables @code{start} and @code{end} are set to |
| 6015 | the beginning and end of the buffer, using the commands | 6015 | the beginning and end of the buffer, using the commands |
| @@ -15284,7 +15284,7 @@ specification. Since people worry that a computer is broken if they | |||
| 15284 | don't see anything going on, the first line of the body is a | 15284 | don't see anything going on, the first line of the body is a |
| 15285 | message. | 15285 | message. |
| 15286 | 15286 | ||
| 15287 | The next line contains a @code{save-excursion} that returns Emacs' | 15287 | The next line contains a @code{save-excursion} that returns Emacs's |
| 15288 | attention to the current buffer when the function completes. This is | 15288 | attention to the current buffer when the function completes. This is |
| 15289 | useful in case you embed this function in another function that | 15289 | useful in case you embed this function in another function that |
| 15290 | presumes point is restored to the original buffer. | 15290 | presumes 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 | ||
| 16956 | A graph needs printed axes, so you can orient yourself. For a do-once | 16956 | A graph needs printed axes, so you can orient yourself. For a do-once |
| 16957 | project, it may be reasonable to draw the axes by hand using Emacs' | 16957 | project, it may be reasonable to draw the axes by hand using Emacs's |
| 16958 | Picture mode; but a graph drawing function may be used more than once. | 16958 | Picture mode; but a graph drawing function may be used more than once. |
| 16959 | 16959 | ||
| 16960 | For this reason, I have written enhancements to the basic | 16960 | For 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 | ||
| 17008 | There are those who appreciate Emacs' default configuration. After | 17008 | There are those who appreciate Emacs's default configuration. After |
| 17009 | all, Emacs starts you in C mode when you edit a C file, starts you in | 17009 | all, Emacs starts you in C mode when you edit a C file, starts you in |
| 17010 | Fortran mode when you edit a Fortran file, and starts you in | 17010 | Fortran mode when you edit a Fortran file, and starts you in |
| 17011 | Fundamental mode when you edit an unadorned file. This all makes | 17011 | Fundamental 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 | |||
| 17033 | naming conventions; the old format saves typing.} | 17033 | naming conventions; the old format saves typing.} |
| 17034 | 17034 | ||
| 17035 | A @file{~/.emacs} file contains Emacs Lisp code. You can write this | 17035 | A @file{~/.emacs} file contains Emacs Lisp code. You can write this |
| 17036 | code yourself; or you can use Emacs' @code{customize} feature to write | 17036 | code yourself; or you can use Emacs's @code{customize} feature to write |
| 17037 | the code for you. You can combine your own expressions and | 17037 | the code for you. You can combine your own expressions and |
| 17038 | auto-written Customize expressions in your @file{.emacs} file. | 17038 | auto-written Customize expressions in your @file{.emacs} file. |
| 17039 | 17039 | ||
| @@ -17098,7 +17098,7 @@ initialization file. | |||
| 17098 | @findex defcustom | 17098 | @findex defcustom |
| 17099 | 17099 | ||
| 17100 | You can specify variables using @code{defcustom} so that you and | 17100 | You can specify variables using @code{defcustom} so that you and |
| 17101 | others can then use Emacs' @code{customize} feature to set their | 17101 | others can then use Emacs's @code{customize} feature to set their |
| 17102 | values. (You cannot use @code{customize} to write function | 17102 | values. (You cannot use @code{customize} to write function |
| 17103 | definitions; but you can write @code{defuns} in your @file{.emacs} | 17103 | definitions; but you can write @code{defuns} in your @file{.emacs} |
| 17104 | file. Indeed, you can write any Lisp expression in your @file{.emacs} | 17104 | file. 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 |
| 17766 | If you load many extensions, as I do, then instead of specifying the | 17766 | If you load many extensions, as I do, then instead of specifying the |
| 17767 | exact location of the extension file, as shown above, you can specify | 17767 | exact location of the extension file, as shown above, you can specify |
| 17768 | that directory as part of Emacs' @code{load-path}. Then, when Emacs | 17768 | that directory as part of Emacs's @code{load-path}. Then, when Emacs |
| 17769 | loads a file, it will search that directory as well as its default | 17769 | loads a file, it will search that directory as well as its default |
| 17770 | list of directories. (The default list is specified in @file{paths.h} | 17770 | list of directories. (The default list is specified in @file{paths.h} |
| 17771 | when Emacs is built.) | 17771 | when Emacs is built.) |