# HG changeset patch # User Stefan Monnier # Date 1083333238 0 # Node ID 8b3e4d251e69536792472b48c2a58224959a72ee # Parent a6dca495fdcd4ea362450c61a4a73f3da48ed36f *** empty log message *** diff -r a6dca495fdcd -r 8b3e4d251e69 ChangeLog --- a/ChangeLog Fri Apr 30 13:53:01 2004 +0000 +++ b/ChangeLog Fri Apr 30 13:53:58 2004 +0000 @@ -1,3 +1,7 @@ +2004-04-29 Dave Love + + * configure.in: Don't forget to quote args to `test'. + 2004-04-24 Thien-Thi Nguyen * autogen.sh: Update filename in "please read" message. diff -r a6dca495fdcd -r 8b3e4d251e69 etc/NEWS --- a/etc/NEWS Fri Apr 30 13:53:01 2004 +0000 +++ b/etc/NEWS Fri Apr 30 13:53:58 2004 +0000 @@ -290,13 +290,15 @@ your .emacs will no longer establish the default highlighting -- Use `sql-product' to accomplish this. +ANSI keywords are always highlighted. + *** The function `sql-add-product-keywords' can be used to add font-lock rules to the product specific rules. For example, to have all identifiers ending in "_t" under MS SQLServer treated as a type, you would use the following line in your .emacs file: (sql-add-product-keywords 'ms - '("\\<\\w+_t\\>" . font-lock-type-face)) + '(("\\<\\w+_t\\>" . font-lock-type-face))) *** Oracle support includes keyword highlighting for Oracle 9i. Most SQL and PL/SQL keywords are implemented. SQL*Plus commands are @@ -313,6 +315,13 @@ called with the -E command line argument to use the operating system credentials to authenticate the user. +*** Postgres support is enhanced. +Keyword highlighting of Postgres 7.3 is implemented. Prompting for +the username and the pgsql `-U' option is added. + +*** MySQL support is enhanced. +Keyword higlighting of MySql 4.0 is implemented. + *** Imenu support has been enhanced to locate tables, views, indexes, packages, procedures, functions, triggers, sequences, rules, and defaults. diff -r a6dca495fdcd -r 8b3e4d251e69 lisp/ChangeLog --- a/lisp/ChangeLog Fri Apr 30 13:53:01 2004 +0000 +++ b/lisp/ChangeLog Fri Apr 30 13:53:58 2004 +0000 @@ -1,5 +1,26 @@ 2004-04-29 Stefan Monnier + * progmodes/python.el (python-send-command): New fun. + (python-send-region, python-load-file): Use it. + + * progmodes/compile.el (compilation-last-buffer): Add var alias. + + * help-fns.el (help-C-file-name): Use new subr-name. + Prepend `src/' to the file name. + (help-C-source-directory, help-subr-name, help-find-C-source): Remove. + (describe-function-1, describe-variable): Only find a C source file name + if DOC is already loaded. + + * help-mode.el (help-function-def, help-variable-def): + Use the new find-function-search-for-symbol functionality. + Allow FILE to be `C-source'. + + * emacs-lisp/find-func.el (find-function-C-source-directory): New var. + (find-function-C-source): New fun. + (find-function-search-for-symbol): Use it. + +2004-03-15 Michael Mauger + * progmodes/sql.el (sql-product-alist): Rename variable `sql-product-support'. Add Postgres login parameters. (sql-set-product, sql-product-feature): Update with renamed @@ -29,27 +50,6 @@ `font-lock-add-keywords'. (sql-send-string): Add function. - * progmodes/python.el (python-send-command): New fun. - (python-send-region, python-load-file): Use it. - - * progmodes/compile.el (compilation-last-buffer): Add var alias. - - * help-fns.el (help-C-file-name): Use new subr-name. - Prepend `src/' to the file name. - (help-C-source-directory, help-subr-name, help-find-C-source): Remove. - (describe-function-1, describe-variable): Only find a C source file name - if DOC is already loaded. - - * help-mode.el (help-function-def, help-variable-def): - Use the new find-function-search-for-symbol functionality. - Allow FILE to be `C-source'. - - * emacs-lisp/find-func.el (find-function-C-source-directory): New var. - (find-function-C-source): New fun. - (find-function-search-for-symbol): Use it. - -2004-03-15 Michael Mauger - 2004-04-29 Dave Love * progmodes/cfengine.el (cfengine-beginning-of-defun)