aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorStefan Monnier2004-04-30 13:53:58 +0000
committerStefan Monnier2004-04-30 13:53:58 +0000
commit2c2cd44fdde84131fb094aa1bd851398b1f9ebef (patch)
tree434fa199a5adae32c6ecc01fc507d498c6e2a0fc /etc
parent058296d320492bca61474ab2ff0ef40da7a6bab3 (diff)
downloademacs-2c2cd44fdde84131fb094aa1bd851398b1f9ebef.tar.gz
emacs-2c2cd44fdde84131fb094aa1bd851398b1f9ebef.zip
*** empty log message ***
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS11
1 files changed, 10 insertions, 1 deletions
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.