diff options
| -rw-r--r-- | doc/emacs/mark.texi | 2 | ||||
| -rw-r--r-- | src/data.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/emacs/mark.texi b/doc/emacs/mark.texi index 0ffa9f74ac6..10505873c53 100644 --- a/doc/emacs/mark.texi +++ b/doc/emacs/mark.texi | |||
| @@ -17,11 +17,13 @@ one comes earlier in the text; each time you move point, the region | |||
| 17 | changes. | 17 | changes. |
| 18 | 18 | ||
| 19 | @cindex active region | 19 | @cindex active region |
| 20 | @cindex activating the mark | ||
| 20 | Setting the mark at a position in the text also @dfn{activates} it. | 21 | Setting the mark at a position in the text also @dfn{activates} it. |
| 21 | When the mark is active, we say also that the region is active; Emacs | 22 | When the mark is active, we say also that the region is active; Emacs |
| 22 | indicates its extent by highlighting the text within it, using the | 23 | indicates its extent by highlighting the text within it, using the |
| 23 | @code{region} face (@pxref{Face Customization}). | 24 | @code{region} face (@pxref{Face Customization}). |
| 24 | 25 | ||
| 26 | @cindex deactivating the mark | ||
| 25 | After certain non-motion commands, including any command that | 27 | After certain non-motion commands, including any command that |
| 26 | changes the text in the buffer, Emacs automatically @dfn{deactivates} | 28 | changes the text in the buffer, Emacs automatically @dfn{deactivates} |
| 27 | the mark; this turns off the highlighting. You can also explicitly | 29 | the mark; this turns off the highlighting. You can also explicitly |
diff --git a/src/data.c b/src/data.c index 750d494b83a..5f1d059512d 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -336,8 +336,6 @@ DEFUN ("symbolp", Fsymbolp, Ssymbolp, 1, 1, 0, | |||
| 336 | return Qnil; | 336 | return Qnil; |
| 337 | } | 337 | } |
| 338 | 338 | ||
| 339 | /* Define this in C to avoid unnecessarily consing up the symbol | ||
| 340 | name. */ | ||
| 341 | DEFUN ("keywordp", Fkeywordp, Skeywordp, 1, 1, 0, | 339 | DEFUN ("keywordp", Fkeywordp, Skeywordp, 1, 1, 0, |
| 342 | doc: /* Return t if OBJECT is a keyword. | 340 | doc: /* Return t if OBJECT is a keyword. |
| 343 | This means that it is a symbol with a print name beginning with `:' | 341 | This means that it is a symbol with a print name beginning with `:' |