]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorGerd Moellmann <gerd@gnu.org>
Sat, 18 Mar 2000 01:42:31 +0000 (01:42 +0000)
committerGerd Moellmann <gerd@gnu.org>
Sat, 18 Mar 2000 01:42:31 +0000 (01:42 +0000)
etc/NEWS
lisp/ChangeLog
src/ChangeLog

index ce10e821e15df7b7c353b4e272c8529dac281485..f359ec6bdaef3487fc88a0661ab7c672e0abee11 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -760,10 +760,15 @@ as octal and numbers starting with `0x' or `0X' as hexadecimal.  The
 new user-option sort-numberic-base can be used to specify a default
 numeric base.
 
-** Ange-ftp allows you to specify of a port number in remote file
+** Changes to Ange-ftp
+
+*** Ange-ftp allows you to specify of a port number in remote file
 names cleanly.  It is appended to the host name, separated by a hash
 sign, e.g. `/foo@bar.org#666:mumble'.  (This syntax comes from EFS.)
 
+*** If the new user-option `ange-ftp-try-passive-mode' is set, passive
+ftp mode will be used if the ftp client supports that.
+
 ** Shell script mode changes.
 
 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.
 When you add a new item, please add it without either +++ or ---
 so I will know I still need to look at it -- rms.
 
+** The new function `string-to-syntax' can be used to translate syntax
+specificationa in string form as accepted my `modify-syntax-entry' to
+the cons-cell form that is used for the values of the `syntax-table'
+text property, and in `font-lock-syntactic-keywords'.
+
+Example:
+
+  (string-to-syntax "()")
+    => (4 . 41)
+
 ** Emacs' reader supports CL read syntax for integers in bases
 other than 10.
 
index 798666f03660d08ed149721ec25baeec36bda00a..1d76f32fc9d3af60395400721569e30ab2c0ffb5 100644 (file)
@@ -1,3 +1,15 @@
+2000-03-18  Gerd Moellmann  <gerd@gnu.org>
+
+       * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE
+       is a string, convert it to a syntax cell using string-to-syntax.
+
+       * simple.el (syntax-code-table, syntax-flag-table): New variables.
+       (string-to-syntax): New function.
+
+       * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
+       (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
+       try to use poassive ftp mode.
+
 2000-03-17  Gerd Moellmann  <gerd@gnu.org>
 
        * progmodes/awk-mode.el (awk-font-lock-keywords): All `else'.
index 3b3184e47c6dd437f9f0dc81475fa2bbfadc6ce5..08aabfb7b3108543f90880046db0c083b904be8d 100644 (file)
@@ -1,7 +1,11 @@
+2000-03-18  Gerd Moellmann  <gerd@gnu.org>
+
+       * lread.c (read_integer): Unread the last char not consumed.
+
 2000-03-17  Gerd Moellmann  <gerd@gnu.org>
 
        * xterm.c (x_update_window_cursor): Don't update in frames
-       who are in the process of being deleted.
+       which are in the process of being deleted.
 
 2000-03-16  Gerd Moellmann  <gerd@gnu.org>