diff options
| author | Stefan Monnier | 2004-04-30 13:53:58 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-04-30 13:53:58 +0000 |
| commit | 2c2cd44fdde84131fb094aa1bd851398b1f9ebef (patch) | |
| tree | 434fa199a5adae32c6ecc01fc507d498c6e2a0fc /etc | |
| parent | 058296d320492bca61474ab2ff0ef40da7a6bab3 (diff) | |
| download | emacs-2c2cd44fdde84131fb094aa1bd851398b1f9ebef.tar.gz emacs-2c2cd44fdde84131fb094aa1bd851398b1f9ebef.zip | |
*** empty log message ***
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/NEWS | 11 |
1 files changed, 10 insertions, 1 deletions
| @@ -290,13 +290,15 @@ The technique of setting `sql-mode-font-lock-defaults' directly in | |||
| 290 | your .emacs will no longer establish the default highlighting -- Use | 290 | your .emacs will no longer establish the default highlighting -- Use |
| 291 | `sql-product' to accomplish this. | 291 | `sql-product' to accomplish this. |
| 292 | 292 | ||
| 293 | ANSI 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 |
| 294 | font-lock rules to the product specific rules. For example, to have | 296 | font-lock rules to the product specific rules. For example, to have |
| 295 | all identifiers ending in "_t" under MS SQLServer treated as a type, | 297 | all identifiers ending in "_t" under MS SQLServer treated as a type, |
| 296 | you would use the following line in your .emacs file: | 298 | you 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 |
| 302 | SQL and PL/SQL keywords are implemented. SQL*Plus commands are | 304 | SQL 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 | |||
| 313 | called with the -E command line argument to use the operating system | 315 | called with the -E command line argument to use the operating system |
| 314 | credentials to authenticate the user. | 316 | credentials to authenticate the user. |
| 315 | 317 | ||
| 318 | *** Postgres support is enhanced. | ||
| 319 | Keyword highlighting of Postgres 7.3 is implemented. Prompting for | ||
| 320 | the username and the pgsql `-U' option is added. | ||
| 321 | |||
| 322 | *** MySQL support is enhanced. | ||
| 323 | Keyword 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, |
| 317 | packages, procedures, functions, triggers, sequences, rules, and | 326 | packages, procedures, functions, triggers, sequences, rules, and |
| 318 | defaults. | 327 | defaults. |