diff options
| author | Gerd Moellmann | 2000-03-18 01:42:31 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-03-18 01:42:31 +0000 |
| commit | d7b511c441597d4bec71c10a8ef0c15d71a9b0a9 (patch) | |
| tree | 8e620cafecc3cfcbfcf8f647f227539a0d402bfe | |
| parent | f1a9c7b94a9154ff9e3e0e1a62f90f1c1fcc5779 (diff) | |
| download | emacs-d7b511c441597d4bec71c10a8ef0c15d71a9b0a9.tar.gz emacs-d7b511c441597d4bec71c10a8ef0c15d71a9b0a9.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 17 | ||||
| -rw-r--r-- | lisp/ChangeLog | 12 | ||||
| -rw-r--r-- | src/ChangeLog | 6 |
3 files changed, 33 insertions, 2 deletions
| @@ -760,10 +760,15 @@ as octal and numbers starting with `0x' or `0X' as hexadecimal. The | |||
| 760 | new user-option sort-numberic-base can be used to specify a default | 760 | new user-option sort-numberic-base can be used to specify a default |
| 761 | numeric base. | 761 | numeric base. |
| 762 | 762 | ||
| 763 | ** Ange-ftp allows you to specify of a port number in remote file | 763 | ** Changes to Ange-ftp |
| 764 | |||
| 765 | *** Ange-ftp allows you to specify of a port number in remote file | ||
| 764 | names cleanly. It is appended to the host name, separated by a hash | 766 | names cleanly. It is appended to the host name, separated by a hash |
| 765 | sign, e.g. `/foo@bar.org#666:mumble'. (This syntax comes from EFS.) | 767 | sign, e.g. `/foo@bar.org#666:mumble'. (This syntax comes from EFS.) |
| 766 | 768 | ||
| 769 | *** If the new user-option `ange-ftp-try-passive-mode' is set, passive | ||
| 770 | ftp mode will be used if the ftp client supports that. | ||
| 771 | |||
| 767 | ** Shell script mode changes. | 772 | ** Shell script mode changes. |
| 768 | 773 | ||
| 769 | Shell script mode (sh-script) can now indent scripts for shells | 774 | Shell script mode (sh-script) can now indent scripts for shells |
| @@ -1053,6 +1058,16 @@ Note that +++ before an item means the Lisp manual has been updated. | |||
| 1053 | When you add a new item, please add it without either +++ or --- | 1058 | When you add a new item, please add it without either +++ or --- |
| 1054 | so I will know I still need to look at it -- rms. | 1059 | so I will know I still need to look at it -- rms. |
| 1055 | 1060 | ||
| 1061 | ** The new function `string-to-syntax' can be used to translate syntax | ||
| 1062 | specificationa in string form as accepted my `modify-syntax-entry' to | ||
| 1063 | the cons-cell form that is used for the values of the `syntax-table' | ||
| 1064 | text property, and in `font-lock-syntactic-keywords'. | ||
| 1065 | |||
| 1066 | Example: | ||
| 1067 | |||
| 1068 | (string-to-syntax "()") | ||
| 1069 | => (4 . 41) | ||
| 1070 | |||
| 1056 | ** Emacs' reader supports CL read syntax for integers in bases | 1071 | ** Emacs' reader supports CL read syntax for integers in bases |
| 1057 | other than 10. | 1072 | other than 10. |
| 1058 | 1073 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 798666f0366..1d76f32fc9d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2000-03-18 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE | ||
| 4 | is a string, convert it to a syntax cell using string-to-syntax. | ||
| 5 | |||
| 6 | * simple.el (syntax-code-table, syntax-flag-table): New variables. | ||
| 7 | (string-to-syntax): New function. | ||
| 8 | |||
| 9 | * ange-ftp.el (ange-ftp-try-passive-mode): New user-option. | ||
| 10 | (ange-ftp-get-process): If ange-ftp-try-passive-mode is set, | ||
| 11 | try to use poassive ftp mode. | ||
| 12 | |||
| 1 | 2000-03-17 Gerd Moellmann <gerd@gnu.org> | 13 | 2000-03-17 Gerd Moellmann <gerd@gnu.org> |
| 2 | 14 | ||
| 3 | * progmodes/awk-mode.el (awk-font-lock-keywords): All `else'. | 15 | * progmodes/awk-mode.el (awk-font-lock-keywords): All `else'. |
diff --git a/src/ChangeLog b/src/ChangeLog index 3b3184e47c6..08aabfb7b31 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,7 +1,11 @@ | |||
| 1 | 2000-03-18 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * lread.c (read_integer): Unread the last char not consumed. | ||
| 4 | |||
| 1 | 2000-03-17 Gerd Moellmann <gerd@gnu.org> | 5 | 2000-03-17 Gerd Moellmann <gerd@gnu.org> |
| 2 | 6 | ||
| 3 | * xterm.c (x_update_window_cursor): Don't update in frames | 7 | * xterm.c (x_update_window_cursor): Don't update in frames |
| 4 | who are in the process of being deleted. | 8 | which are in the process of being deleted. |
| 5 | 9 | ||
| 6 | 2000-03-16 Gerd Moellmann <gerd@gnu.org> | 10 | 2000-03-16 Gerd Moellmann <gerd@gnu.org> |
| 7 | 11 | ||