]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorGerd Moellmann <gerd@gnu.org>
Thu, 27 Jul 2000 20:16:08 +0000 (20:16 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 27 Jul 2000 20:16:08 +0000 (20:16 +0000)
ChangeLog
etc/NEWS
lisp/ChangeLog

index 65d995cc5886aa9b49deef4a6b4cb80c6ed9493c..b142de1849c4cb9d9a38d782e5260ec6c263e57b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-07-27  Gerd Moellmann  <gerd@gnu.org>
+
+       * make-dist (aclocal.m4): Include in distribution.
+
 2000-07-26  Dave Love  <fx@gnu.org>
 
        * configure.in (AC_SYS_LARGEFILE): Moved earlier.
index 52692f67bbfc199a202b45ea1db562044fa260bc..2bab6eedd194f7e32d9e62dd7ad95ade7cb49c7d 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1322,7 +1322,20 @@ functionality with aliases for the mldrag functions.
 * Lisp changes made after edition 2.6 of the Emacs Lisp Manual,
 (Display-related features are described in a page of their own below.)
 
-** The function `delete' now also works on vectors and strings.
+** Two new functions for removing elements from lists/sequences
+were added
+
+- Function: remove ELT SEQ
+
+Return a copy of SEQ with all occurences of ELT removed.  SEQ must be
+a list, vector, or string.  The comparison is done with `equal'.
+
+- Function: remq ELT LIST
+
+Return a copy of LIST with all occurences of ELT removed.  The
+comparison is done with `eq'.
+
+** The function `delete' now also works with vectors and strings.
 
 ** The meaning of the `:weakness WEAK' argument of make-hash-table
 has been changed.
index 5c11b0569c990c5e6855e83ec2514ad0fc8faafc..99c6ea145ebc6ce09cda377b4d539543ad9ec3df 100644 (file)
@@ -1,5 +1,10 @@
 2000-07-27  Gerd Moellmann  <gerd@gnu.org>
 
+       * play/cookie1.el: Add explanation of how to make cookie.el
+       compatible with strfile(1) to comment.
+
+       * subr.el (remove, remq): New functions.
+
        * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
        escape `*' in regexps.
        (midnight-find): Reverse order of arguments in the funcall of
 
        * play/meese.el: Add Commentary section.
 
+2000-07-27  Alex Schroeder  <alex@gnu.org>
+
+       * sql.el (sql-ms): Added autoload cookie.
+       (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
+       (sql-oracle): Ditto.
+       (sql-help): Doc change.
+
+       (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
+       types and exceptions.
+
+2000-07-27  Alex Schroeder  <alex@gnu.org>
+
+       * sql.el (sql-placeholder-history): New variable.
+       (sql-query-placeholders-and-send): New function that will query
+       the user and replace placeholders with user input.
+       (sql-oracle): If running on NT, set comint-input-sender to
+       sql-query-placeholders-and-send.
+
+       (sql-stop): If in the SQLi buffer, insert stop notification, else
+       present it as a message.
+
+2000-07-27  Alex Schroeder  <alex@gnu.org>
+
+       * sql.el (sql-input-ring-separator): Doc change.
+       (sql-input-ring-file-name): Doc change.
+       (sql-interactive-mode): Use `sql-input-ring-separator' and
+       `sql-input-ring-file-name' to set the comint-mode equivalents
+       without making them local variables.
+       (sql-stop): Don't bind `sql-input-ring-separator' and
+       `sql-input-ring-file-name' dynamically to their comint-mode
+       equivalents.
+
 2000-07-27  Kenichi Handa  <handa@etl.go.jp>
 
        * international/mule.el (register-char-codings): New function.