comparison etc/NEWS.1-17 @ 109007:e04f8f7f7048

* etc/NEWS.1-17: Fix typos.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 15 Jun 2010 13:41:21 +0200
parents 1d1d5d9bd884
children d3f1a0178876
comparison
equal deleted inserted replaced
109006:7a086283ef8c 109007:e04f8f7f7048
758 not try to give commands in it when no longer really in the debugger. 758 not try to give commands in it when no longer really in the debugger.
759 759
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.
767 767
768 All functions to select a buffer in another window should 768 All functions to select a buffer in another window should
969 * M-x run-lisp. 969 * M-x run-lisp.
970 970
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
978 send the current defun as input to the `*lisp*' subprocess. 978 send the current defun as input to the `*lisp*' subprocess.
979 979
1419 1419
1420 The new variable features is a list of symbols which represent "features" 1420 The new variable features is a list of symbols which represent "features"
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)
1428 (split-window-vertically)) 1428 (split-window-vertically))
1429 1429
1539 from which to read. (They default to 0 and the length of the string, 1539 from which to read. (They default to 0 and the length of the string,
1540 respectively.) 1540 respectively.)
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
1554 Changes in Emacs 14 1554 Changes in Emacs 14
1555 1555