diff options
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/ChangeLog | 4 | ||||
| -rw-r--r-- | etc/NEWS | 17 | ||||
| -rw-r--r-- | etc/NEWS.1-17 | 10 | ||||
| -rw-r--r-- | etc/NEWS.23 | 4 | ||||
| -rw-r--r-- | etc/tutorials/TUTORIAL.bg | 2 | ||||
| -rw-r--r-- | etc/tutorials/TUTORIAL.es | 2 |
6 files changed, 32 insertions, 7 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index 872615c43e3..3e8adcb1b27 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-06-12 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * tutorials/TUTORIAL.bg, tutorials/TUTORIAL.es: Fix typos. | ||
| 4 | |||
| 1 | 2010-06-09 Michael Albinus <michael.albinus@gmx.de> | 5 | 2010-06-09 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 6 | ||
| 3 | * NEWS: Add notifications.el. | 7 | * NEWS: Add notifications.el. |
| @@ -125,6 +125,19 @@ trashing. This avoids inadvertently trashing temporary files. | |||
| 125 | *** Calling `delete-file' or `delete-directory' with a prefix argument | 125 | *** Calling `delete-file' or `delete-directory' with a prefix argument |
| 126 | now forces true deletion, regardless of `delete-by-moving-to-trash'. | 126 | now forces true deletion, regardless of `delete-by-moving-to-trash'. |
| 127 | 127 | ||
| 128 | ** New option `list-colors-sort' defines the color sort order | ||
| 129 | for `list-colors-display'. | ||
| 130 | |||
| 131 | ** An Emacs Lisp package manager is now included. | ||
| 132 | This is a convenient way to download and install additional packages, | ||
| 133 | from elpa.gnu.org. `M-x package-list-packages' shows a list of | ||
| 134 | packages, which can be selected for installation. | ||
| 135 | |||
| 136 | *** By default, all installed packages are loaded and activated | ||
| 137 | automatically when Emacs starts up. To disable this, set | ||
| 138 | `package-enable-at-startup' to nil. To change which packages are | ||
| 139 | loaded, customize `package-load-list'. | ||
| 140 | |||
| 128 | 141 | ||
| 129 | * Editing Changes in Emacs 24.1 | 142 | * Editing Changes in Emacs 24.1 |
| 130 | 143 | ||
| @@ -254,7 +267,11 @@ Notifications API. It requires D-Bus for communication. | |||
| 254 | 267 | ||
| 255 | * Incompatible Lisp Changes in Emacs 24.1 | 268 | * Incompatible Lisp Changes in Emacs 24.1 |
| 256 | 269 | ||
| 270 | ** A backquote not followed by a space is now always treated as new-style. | ||
| 271 | |||
| 257 | ** Test for special mode-class was moved from view-file to view-buffer. | 272 | ** Test for special mode-class was moved from view-file to view-buffer. |
| 273 | FIXME: This only says what was changed, but not what are the | ||
| 274 | programmer-visible consequences. | ||
| 258 | 275 | ||
| 259 | ** Passing a nil argument to a minor mode function now turns the mode | 276 | ** Passing a nil argument to a minor mode function now turns the mode |
| 260 | ON unconditionally. | 277 | ON unconditionally. |
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 | ||
diff --git a/etc/NEWS.23 b/etc/NEWS.23 index 9124fe1c069..74291bab8ab 100644 --- a/etc/NEWS.23 +++ b/etc/NEWS.23 | |||
| @@ -27,6 +27,10 @@ with a prefix argument or by typing C-u C-h C-n. | |||
| 27 | 27 | ||
| 28 | * Changes in Specialized Modes and Packages in Emacs 23.3 | 28 | * Changes in Specialized Modes and Packages in Emacs 23.3 |
| 29 | 29 | ||
| 30 | --- | ||
| 31 | ** The appt-add command takes an optional argument for the warning time. | ||
| 32 | This can be used in place of the default appt-message-warning-time. | ||
| 33 | |||
| 30 | 34 | ||
| 31 | * New Modes and Packages in Emacs 23.3 | 35 | * New Modes and Packages in Emacs 23.3 |
| 32 | 36 | ||
diff --git a/etc/tutorials/TUTORIAL.bg b/etc/tutorials/TUTORIAL.bg index 3f8ea6e2c45..e8300d26653 100644 --- a/etc/tutorials/TUTORIAL.bg +++ b/etc/tutorials/TUTORIAL.bg | |||
| @@ -625,7 +625,7 @@ C-f. По този начин може да получите доста на брой файлове в Емакс. | |||
| 625 | Емакс сесията. | 625 | Емакс сесията. |
| 626 | 626 | ||
| 627 | >> Въведете C-x b *Messages* <Return>, за да видите буфера със | 627 | >> Въведете C-x b *Messages* <Return>, за да видите буфера със |
| 628 | съобщенията. След това въведете C-x C-b TUTORIAL <Return>, за да | 628 | съобщенията. След това въведете C-x b TUTORIAL <Return>, за да |
| 629 | се върнете към това въведение. | 629 | се върнете към това въведение. |
| 630 | 630 | ||
| 631 | Ако направите промени в текста на един файл и тогава намерите друг | 631 | Ако направите промени в текста на един файл и тогава намерите друг |
diff --git a/etc/tutorials/TUTORIAL.es b/etc/tutorials/TUTORIAL.es index 1af1b97537c..7fb7ac2c2a3 100644 --- a/etc/tutorials/TUTORIAL.es +++ b/etc/tutorials/TUTORIAL.es | |||
| @@ -630,7 +630,7 @@ contiene los mensajes que han aparecido en la lнnea de abajo durante | |||
| 630 | su sesiуn de Emacs. | 630 | su sesiуn de Emacs. |
| 631 | 631 | ||
| 632 | >> Teclee C-x b *Messages* <Return> para ver el buffer de mensajes. | 632 | >> Teclee C-x b *Messages* <Return> para ver el buffer de mensajes. |
| 633 | Luego teclee C-b TUTORIAL <Return> para regresar a este tutorial. | 633 | Luego teclee C-x b TUTORIAL <Return> para regresar a este tutorial. |
| 634 | 634 | ||
| 635 | Si hace cambios al texto de un archivo, y luego encuentra otro | 635 | Si hace cambios al texto de un archivo, y luego encuentra otro |
| 636 | archivo, esto no guarda el primer archivo. Sus cambios permanecerбn | 636 | archivo, esto no guarda el primer archivo. Sus cambios permanecerбn |