aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--etc/NEWS11
-rw-r--r--lisp/ChangeLog43
3 files changed, 57 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ae0e09e08da..d4deac200a5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12004-04-29 Dave Love <fx@gnu.org>
2
3 * configure.in: Don't forget to quote args to `test'.
4
12004-04-24 Thien-Thi Nguyen <ttn@gnu.org> 52004-04-24 Thien-Thi Nguyen <ttn@gnu.org>
2 6
3 * autogen.sh: Update filename in "please read" message. 7 * autogen.sh: Update filename in "please read" message.
diff --git a/etc/NEWS b/etc/NEWS
index fc6986e1ac4..0e55e0e6419 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -290,13 +290,15 @@ The technique of setting `sql-mode-font-lock-defaults' directly in
290your .emacs will no longer establish the default highlighting -- Use 290your .emacs will no longer establish the default highlighting -- Use
291`sql-product' to accomplish this. 291`sql-product' to accomplish this.
292 292
293ANSI keywords are always highlighted.
294
293*** The function `sql-add-product-keywords' can be used to add 295*** The function `sql-add-product-keywords' can be used to add
294font-lock rules to the product specific rules. For example, to have 296font-lock rules to the product specific rules. For example, to have
295all identifiers ending in "_t" under MS SQLServer treated as a type, 297all identifiers ending in "_t" under MS SQLServer treated as a type,
296you would use the following line in your .emacs file: 298you would use the following line in your .emacs file:
297 299
298 (sql-add-product-keywords 'ms 300 (sql-add-product-keywords 'ms
299 '("\\<\\w+_t\\>" . font-lock-type-face)) 301 '(("\\<\\w+_t\\>" . font-lock-type-face)))
300 302
301*** Oracle support includes keyword highlighting for Oracle 9i. Most 303*** Oracle support includes keyword highlighting for Oracle 9i. Most
302SQL and PL/SQL keywords are implemented. SQL*Plus commands are 304SQL and PL/SQL keywords are implemented. SQL*Plus commands are
@@ -313,6 +315,13 @@ If the username and password are not provided to `sql-ms', osql is
313called with the -E command line argument to use the operating system 315called with the -E command line argument to use the operating system
314credentials to authenticate the user. 316credentials to authenticate the user.
315 317
318*** Postgres support is enhanced.
319Keyword highlighting of Postgres 7.3 is implemented. Prompting for
320the username and the pgsql `-U' option is added.
321
322*** MySQL support is enhanced.
323Keyword higlighting of MySql 4.0 is implemented.
324
316*** Imenu support has been enhanced to locate tables, views, indexes, 325*** Imenu support has been enhanced to locate tables, views, indexes,
317packages, procedures, functions, triggers, sequences, rules, and 326packages, procedures, functions, triggers, sequences, rules, and
318defaults. 327defaults.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 55ad3384402..9dfd021fdb5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,10 @@
12004-04-29 Stefan Monnier <monnier@iro.umontreal.ca> 12004-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * progmodes/python.el (python-send-command): New fun.
4 (python-send-region, python-load-file): Use it.
5
6 * progmodes/compile.el (compilation-last-buffer): Add var alias.
7
3 * help-fns.el (help-C-file-name): Use new subr-name. 8 * help-fns.el (help-C-file-name): Use new subr-name.
4 Prepend `src/' to the file name. 9 Prepend `src/' to the file name.
5 (help-C-source-directory, help-subr-name, help-find-C-source): Remove. 10 (help-C-source-directory, help-subr-name, help-find-C-source): Remove.
@@ -14,6 +19,44 @@
14 (find-function-C-source): New fun. 19 (find-function-C-source): New fun.
15 (find-function-search-for-symbol): Use it. 20 (find-function-search-for-symbol): Use it.
16 21
222004-03-15 Michael Mauger <mmaug@yahoo.com>
23
24 * progmodes/sql.el (sql-product-alist): Rename variable
25 `sql-product-support'. Add Postgres login parameters.
26 (sql-set-product, sql-product-feature): Update with renamed
27 variable.
28 (sql-connect-postgres): Add username prompt.
29 (sql-imenu-generic-expression, sql-mode-font-lock-object-name):
30 Make patterns less product specific.
31 (sql-xemacs-p, sql-emacs19-p): Add flags for emacs variants.
32 (sql-mode-abbrev-table): Modify initialization.
33 (sql-builtin-face): Add variable.
34 (sql-keywords-re): Add macro.
35 (sql-mode-ansi-font-lock-keywords): Update for ANSI-92.
36 (sql-mode-oracle-font-lock-keywords): Update for Oracle 9i.
37 (sql-mode-postgres-font-lock-keywords): Update for Postgres 7.3.
38 (sql-mode-mysql-font-lock-keywords): Update for MySql 4.0.
39 (sql-mode-linter-font-lock-keywords)
40 (sql-mode-ms-font-lock-keywords): Use `sql-keywords-re' macro.
41 (sql-mode-sybase-font-lock-keywords)
42 (sql-mode-informix-font-lock-keywords)
43 (sql-mode-interbase-font-lock-keywords)
44 (sql-mode-ingres-font-lock-keywords)
45 (sql-mode-solid-font-lock-keywords)
46 (sql-mode-sqlite-font-lock-keywords)
47 (sql-mode-db2-font-lock-keywords): Default to nil.
48 (sql-product-font-lock): Always highlight ANSI keywords.
49 (sql-add-product-keywords): Made similar to
50 `font-lock-add-keywords'.
51 (sql-send-string): Add function.
52
532004-04-29 Dave Love <fx@gnu.org>
54
55 * progmodes/cfengine.el (cfengine-beginning-of-defun)
56 (cfengine-end-of-defun): Ensure progress through buffer.
57
58 * info-look.el (cfengine-mode): Accept a terminal ().
59
172004-04-29 Juri Linkov <juri@jurta.org> 602004-04-29 Juri Linkov <juri@jurta.org>
18 61
19 * isearch.el (isearch-mode-map): Bind \C-w to isearch-yank-word 62 * isearch.el (isearch-mode-map): Bind \C-w to isearch-yank-word