diff options
| author | Juanma Barranquero | 2010-06-15 13:41:21 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2010-06-15 13:41:21 +0200 |
| commit | 8b9f5fe8d850c7724aabbfdbd26cb4afdf1d6440 (patch) | |
| tree | 07eb5c1c6fed9c224bde3a92b0256099332d3ecf | |
| parent | 6fda6a0c40b45d210f94d3593a66d16003238835 (diff) | |
| download | emacs-8b9f5fe8d850c7724aabbfdbd26cb4afdf1d6440.tar.gz emacs-8b9f5fe8d850c7724aabbfdbd26cb4afdf1d6440.zip | |
* etc/NEWS.1-17: Fix typos.
| -rw-r--r-- | etc/NEWS.1-17 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/NEWS.1-17 b/etc/NEWS.1-17 index 23184c45689..122c634b0f2 100644 --- a/etc/NEWS.1-17 +++ b/etc/NEWS.1-17 | |||
| @@ -760,7 +760,7 @@ not try to give commands in it when no longer really in the debugger. | |||
| 760 | * New function `switch-to-buffer-other-window'. | 760 | * New function `switch-to-buffer-other-window'. |
| 761 | 761 | ||
| 762 | This is the new primitive to select a specified buffer (the | 762 | This is the new primitive to select a specified buffer (the |
| 763 | argument) in another window. It is not quite the same as | 763 | argument) in another window. It is not quite the same as |
| 764 | `pop-to-buffer', because it is guaranteed to create another | 764 | `pop-to-buffer', because it is guaranteed to create another |
| 765 | window (assuming there is room on the screen) so that it can | 765 | window (assuming there is room on the screen) so that it can |
| 766 | leave the current window's old buffer displayed as well. | 766 | leave the current window's old buffer displayed as well. |
| @@ -971,7 +971,7 @@ once again "unmodified". | |||
| 971 | This command creates an inferior Lisp process whose input and output | 971 | This command creates an inferior Lisp process whose input and output |
| 972 | appear in the Emacs buffer named `*lisp*'. That buffer uses a major mode | 972 | appear in the Emacs buffer named `*lisp*'. That buffer uses a major mode |
| 973 | called inferior-lisp-mode, which has many of the commands of lisp-mode | 973 | called inferior-lisp-mode, which has many of the commands of lisp-mode |
| 974 | and those of shell-mode. Calls the value of shell-mode-hook and | 974 | and those of shell-mode. Calls the value of shell-mode-hook and |
| 975 | lisp-mode-hook, in that order, if non-nil. | 975 | lisp-mode-hook, in that order, if non-nil. |
| 976 | 976 | ||
| 977 | Meanwhile, in lisp-mode, the command C-M-x is defined to | 977 | Meanwhile, in lisp-mode, the command C-M-x is defined to |
| @@ -1421,7 +1421,7 @@ Changes in Emacs 15 | |||
| 1421 | of the executing emacs, for use in run-time conditionalization. | 1421 | of the executing emacs, for use in run-time conditionalization. |
| 1422 | 1422 | ||
| 1423 | The function featurep of one argument may be used to test for the | 1423 | The function featurep of one argument may be used to test for the |
| 1424 | presence of a feature. It is just the same as | 1424 | presence of a feature. It is just the same as |
| 1425 | (not (null (memq FEATURE features))) where FEATURE is its argument. | 1425 | (not (null (memq FEATURE features))) where FEATURE is its argument. |
| 1426 | For example, (if (featurep 'magic-window-hack) | 1426 | For example, (if (featurep 'magic-window-hack) |
| 1427 | (transmogrify-window 'vertical) | 1427 | (transmogrify-window 'vertical) |
| @@ -1541,13 +1541,13 @@ Changes in Emacs 15 | |||
| 1541 | 1541 | ||
| 1542 | This function returns a cons cell whose car is the object produced | 1542 | This function returns a cons cell whose car is the object produced |
| 1543 | by reading from the string and whose cdr is a number giving the | 1543 | by reading from the string and whose cdr is a number giving the |
| 1544 | index in the string of the first character not read. That index may | 1544 | index in the string of the first character not read. That index may |
| 1545 | be passed as the second argument to a later call to read-from-string | 1545 | be passed as the second argument to a later call to read-from-string |
| 1546 | to read the next form represented by the string. | 1546 | to read the next form represented by the string. |
| 1547 | 1547 | ||
| 1548 | In addition, the function read now accepts a string as its argument. | 1548 | In addition, the function read now accepts a string as its argument. |
| 1549 | In this case, it calls read-from-string on the whole string, and | 1549 | In this case, it calls read-from-string on the whole string, and |
| 1550 | returns the car of the result. (ie the actual object read.) | 1550 | returns the car of the result (ie the actual object read.) |
| 1551 | 1551 | ||
| 1552 | 1552 | ||
| 1553 | 1553 | ||