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 | |
| parent | 058296d320492bca61474ab2ff0ef40da7a6bab3 (diff) | |
| download | emacs-2c2cd44fdde84131fb094aa1bd851398b1f9ebef.tar.gz emacs-2c2cd44fdde84131fb094aa1bd851398b1f9ebef.zip | |
*** empty log message ***
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | etc/NEWS | 11 | ||||
| -rw-r--r-- | lisp/ChangeLog | 43 |
3 files changed, 57 insertions, 1 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-04-29 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * configure.in: Don't forget to quote args to `test'. | ||
| 4 | |||
| 1 | 2004-04-24 Thien-Thi Nguyen <ttn@gnu.org> | 5 | 2004-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. |
| @@ -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. |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 55ad3384402..9dfd021fdb5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2004-04-29 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2004-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 | ||
| 22 | 2004-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 | |||
| 53 | 2004-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 | |||
| 17 | 2004-04-29 Juri Linkov <juri@jurta.org> | 60 | 2004-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 |