aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-07-27 20:16:08 +0000
committerGerd Moellmann2000-07-27 20:16:08 +0000
commit27848c0130b4b2f55804ef58bf4a195e24bf6030 (patch)
tree8c4b96e95ba7c46d6edf113d2ed022f7102f8a4a
parent13157efca3a20423a0ea0386b9a23029976d2ab8 (diff)
downloademacs-27848c0130b4b2f55804ef58bf4a195e24bf6030.tar.gz
emacs-27848c0130b4b2f55804ef58bf4a195e24bf6030.zip
*** empty log message ***
-rw-r--r--ChangeLog4
-rw-r--r--etc/NEWS15
-rw-r--r--lisp/ChangeLog37
3 files changed, 55 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 65d995cc588..b142de1849c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12000-07-27 Gerd Moellmann <gerd@gnu.org>
2
3 * make-dist (aclocal.m4): Include in distribution.
4
12000-07-26 Dave Love <fx@gnu.org> 52000-07-26 Dave Love <fx@gnu.org>
2 6
3 * configure.in (AC_SYS_LARGEFILE): Moved earlier. 7 * configure.in (AC_SYS_LARGEFILE): Moved earlier.
diff --git a/etc/NEWS b/etc/NEWS
index 52692f67bbf..2bab6eedd19 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1322,7 +1322,20 @@ functionality with aliases for the mldrag functions.
1322* Lisp changes made after edition 2.6 of the Emacs Lisp Manual, 1322* Lisp changes made after edition 2.6 of the Emacs Lisp Manual,
1323(Display-related features are described in a page of their own below.) 1323(Display-related features are described in a page of their own below.)
1324 1324
1325** The function `delete' now also works on vectors and strings. 1325** Two new functions for removing elements from lists/sequences
1326were added
1327
1328- Function: remove ELT SEQ
1329
1330Return a copy of SEQ with all occurences of ELT removed. SEQ must be
1331a list, vector, or string. The comparison is done with `equal'.
1332
1333- Function: remq ELT LIST
1334
1335Return a copy of LIST with all occurences of ELT removed. The
1336comparison is done with `eq'.
1337
1338** The function `delete' now also works with vectors and strings.
1326 1339
1327** The meaning of the `:weakness WEAK' argument of make-hash-table 1340** The meaning of the `:weakness WEAK' argument of make-hash-table
1328has been changed. 1341has been changed.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5c11b0569c9..99c6ea145eb 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,10 @@
12000-07-27 Gerd Moellmann <gerd@gnu.org> 12000-07-27 Gerd Moellmann <gerd@gnu.org>
2 2
3 * play/cookie1.el: Add explanation of how to make cookie.el
4 compatible with strfile(1) to comment.
5
6 * subr.el (remove, remq): New functions.
7
3 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly 8 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
4 escape `*' in regexps. 9 escape `*' in regexps.
5 (midnight-find): Reverse order of arguments in the funcall of 10 (midnight-find): Reverse order of arguments in the funcall of
@@ -10,6 +15,38 @@
10 15
11 * play/meese.el: Add Commentary section. 16 * play/meese.el: Add Commentary section.
12 17
182000-07-27 Alex Schroeder <alex@gnu.org>
19
20 * sql.el (sql-ms): Added autoload cookie.
21 (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
22 (sql-oracle): Ditto.
23 (sql-help): Doc change.
24
25 (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
26 types and exceptions.
27
282000-07-27 Alex Schroeder <alex@gnu.org>
29
30 * sql.el (sql-placeholder-history): New variable.
31 (sql-query-placeholders-and-send): New function that will query
32 the user and replace placeholders with user input.
33 (sql-oracle): If running on NT, set comint-input-sender to
34 sql-query-placeholders-and-send.
35
36 (sql-stop): If in the SQLi buffer, insert stop notification, else
37 present it as a message.
38
392000-07-27 Alex Schroeder <alex@gnu.org>
40
41 * sql.el (sql-input-ring-separator): Doc change.
42 (sql-input-ring-file-name): Doc change.
43 (sql-interactive-mode): Use `sql-input-ring-separator' and
44 `sql-input-ring-file-name' to set the comint-mode equivalents
45 without making them local variables.
46 (sql-stop): Don't bind `sql-input-ring-separator' and
47 `sql-input-ring-file-name' dynamically to their comint-mode
48 equivalents.
49
132000-07-27 Kenichi Handa <handa@etl.go.jp> 502000-07-27 Kenichi Handa <handa@etl.go.jp>
14 51
15 * international/mule.el (register-char-codings): New function. 52 * international/mule.el (register-char-codings): New function.