aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2003-06-17 21:11:31 +0000
committerJuanma Barranquero2003-06-17 21:11:31 +0000
commit5d0ab731a5ee066de51de17b67c62e30eff2f15e (patch)
tree627fd9a09cab330d044c9b12f716db59306b53cf
parent5d538ce37e8144e830048e3037df440f24f43c60 (diff)
downloademacs-5d0ab731a5ee066de51de17b67c62e30eff2f15e.tar.gz
emacs-5d0ab731a5ee066de51de17b67c62e30eff2f15e.zip
*** empty log message ***
-rw-r--r--etc/NEWS7
-rw-r--r--lisp/ChangeLog4
2 files changed, 9 insertions, 2 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 8866dd79d2e..5d825a6e402 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -88,6 +88,9 @@ See the files mac/README and mac/INSTALL for build instructions.
88 88
89* Changes in Emacs 21.4 89* Changes in Emacs 21.4
90 90
91** Support for the SQLite interpreter has been added to sql.el by calling
92'sql-sqlite'.
93
91** BibTeX mode: 94** BibTeX mode:
92*** New `bibtex-entry-format' option `required-fields', enabled by default. 95*** New `bibtex-entry-format' option `required-fields', enabled by default.
93*** bibtex-maintain-sorted-entries can take values `plain', 96*** bibtex-maintain-sorted-entries can take values `plain',
@@ -1327,7 +1330,7 @@ numbers. For instance, (number-sequence 4 9) returns (4 5 6 7 8 9).
1327By default, the separation is 1, but you can specify a different separation 1330By default, the separation is 1, but you can specify a different separation
1328as the third argument. (number-sequence 1.5 6 2) returns (1.5 3.5 5.5). 1331as the third argument. (number-sequence 1.5 6 2) returns (1.5 3.5 5.5).
1329 1332
1330** `file-chase-links' now takes an optional second argument LIMIT which 1333** `file-chase-links' now takes an optional second argument LIMIT which
1331specifies the maximum number of links to chase through. If after that 1334specifies the maximum number of links to chase through. If after that
1332many iterations the file name obtained is still a symbolic link, 1335many iterations the file name obtained is still a symbolic link,
1333`file-chase-links' returns it anyway. 1336`file-chase-links' returns it anyway.
@@ -2033,7 +2036,7 @@ This is particularly good because the intangible property often has
2033unexpected side-effects since the property applies to everything 2036unexpected side-effects since the property applies to everything
2034(including `goto-char', ...) whereas this new code is only run after 2037(including `goto-char', ...) whereas this new code is only run after
2035post-command-hook and thus does not care about intermediate states. 2038post-command-hook and thus does not care about intermediate states.
2036 2039
2037** Only one of the beginning or end of an invisible, intangible region is 2040** Only one of the beginning or end of an invisible, intangible region is
2038considered an acceptable value for point; which one is determined by 2041considered an acceptable value for point; which one is determined by
2039examining how the invisible/intangible properties are inherited when new 2042examining how the invisible/intangible properties are inherited when new
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c8b36ad35ce..103ea22fdbe 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12003-06-17 Pinku Surana <surana@rcn.com>
2
3 * progmodes/sql.el: Add support for SQLite interpreter.
4
12003-06-17 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net> 52003-06-17 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net>
2 6
3 Version 2.0.35 of Tramp released. 7 Version 2.0.35 of Tramp released.