diff options
| author | Juanma Barranquero | 2003-07-13 17:26:15 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2003-07-13 17:26:15 +0000 |
| commit | 741518d98af626ae8f6fc496cd3fbe7928b1abe4 (patch) | |
| tree | 5f422abeece49907b3f78a26b23ae089f30143a5 | |
| parent | 2fbc1118b3cd67547b6482061ba7c6ee1e7a57a9 (diff) | |
| download | emacs-741518d98af626ae8f6fc496cd3fbe7928b1abe4.tar.gz emacs-741518d98af626ae8f6fc496cd3fbe7928b1abe4.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index eb35550cbf7..b45ef6f61c0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,108 @@ | |||
| 1 | 2003-07-13 Karl Eichwalder <ke@suse.de> | ||
| 2 | |||
| 3 | * textmodes/po.el (po-find-charset): White space at the start of the | ||
| 4 | Content-Type field body is non-mandatory. | ||
| 5 | |||
| 6 | 2003-07-13 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change) | ||
| 7 | |||
| 8 | * textmodes/texinfo.el (texinfo-section-list): Append | ||
| 9 | appendixsection; a synonym for appendixsec. | ||
| 10 | |||
| 11 | 2003-07-13 Jari Aalto <jari.aalto@poboxes.com> | ||
| 12 | |||
| 13 | * man.el (Man-translate-cleanup): New. | ||
| 14 | (Man-translate-references): Call `Man-translate-cleanup' to clean | ||
| 15 | leading, trailing and middle spaces. | ||
| 16 | |||
| 17 | 2003-07-13 Michael Mauger <mmaug@yahoo.com> | ||
| 18 | |||
| 19 | Version 1.8.0 of sql-mode. | ||
| 20 | |||
| 21 | Simplify selection of SQL products to define highlighting and | ||
| 22 | interactive mode. Includes detailed instructions on adding support | ||
| 23 | for new products. | ||
| 24 | |||
| 25 | * progmodes/sql.el (sql-product): New variable. Identifies SQL | ||
| 26 | product for use in highlighting and interactive mode. | ||
| 27 | (sql-interactive-product): New variable. SQL product for | ||
| 28 | sql-interactive-mode. | ||
| 29 | (sql-product-support): New variable. Specifies product-specific | ||
| 30 | parameters to drive highlighting and interactive mode. | ||
| 31 | (sql-imenu-generic-expression): Add more object types. | ||
| 32 | (sql-sqlite-options): Correct comment. | ||
| 33 | (sql-ms-program): Use "osql" rather than "isql". | ||
| 34 | (sql-prompt-regexp, sql-prompt-length): Update comment. | ||
| 35 | (sql-mode-menu): Add "Start SQLi session" entry. Replace | ||
| 36 | Highlighting submenu with Product menu. Fix Send Region entry. | ||
| 37 | (sql-mode-abbrev-table): Add abbreviations. Support of SYSTEM-FLAG | ||
| 38 | on define-abbrev. Support was removed with last check-in; it now | ||
| 39 | handles older Emacsen without the SYSTEM-FLAG. | ||
| 40 | (sql-mode-font-lock-object-name): Add font-lock pattern for object | ||
| 41 | names. | ||
| 42 | (sql-mode-ansi-font-lock-keywords): Set as default value. | ||
| 43 | (sql-mode-oracle-font-lock-keywords): Set as default value. Support | ||
| 44 | Oracle 9i keywords. | ||
| 45 | (sql-mode-postgres-font-lock-keywords): Set as default value. | ||
| 46 | (sql-mode-linter-font-lock-keywords): Set as default value. | ||
| 47 | (sql-mode-ms-font-lock-keywords): New variable. Support Microsoft | ||
| 48 | SQLServer 2000. | ||
| 49 | (sql-mode-sybase-font-lock-keywords) | ||
| 50 | (sql-mode-interbase-font-lock-keywords) | ||
| 51 | (sql-mode-sqlite-font-lock-keywords) | ||
| 52 | (sql-mode-strong-font-lock-keywords) | ||
| 53 | (sql-mode-mysql-font-lock-keywords) | ||
| 54 | (sql-mode-db2-font-lock-keywords): New variables. Default to ANSI | ||
| 55 | keywords. | ||
| 56 | (sql-mode-font-lock-defaults): Update comment. | ||
| 57 | (sql-product-feature): New function. Returns feature associated | ||
| 58 | with a product from `sql-product-support' alist. | ||
| 59 | (sql-product-font-lock): New function. Set font-lock support based | ||
| 60 | on `sql-product'. | ||
| 61 | (sql-add-product-keywords): New function. Add font-lock rules to | ||
| 62 | product-specific keyword variables. | ||
| 63 | (sql-set-product): New function. Set `sql-product' and apply | ||
| 64 | appropriate font-lock highlighting. | ||
| 65 | (sql-highlight-product): New function. Set font-lock support based | ||
| 66 | on a product. Also set mode name to include product name. | ||
| 67 | (sql-highlight-ansi-keywords, sql-highlight-oracle-keywords) | ||
| 68 | (sql-highlight-postgres-keywords, sql-highlight-linter-keywords): | ||
| 69 | Use `sql-set-product'. | ||
| 70 | (sql-highlight-ms-keywords) | ||
| 71 | (sql-highlight-sybase-keywords) | ||
| 72 | (sql-highlight-interbase-keywords) | ||
| 73 | (sql-highlight-strong-keywords) | ||
| 74 | (sql-highlight-mysql-keywords) | ||
| 75 | (sql-highlight-sqlite-keywords) | ||
| 76 | (sql-highlight-db2-keywords): New functions. Use `sql-set-product'. | ||
| 77 | (sql-get-login): Prompt in the same order as the tokens. | ||
| 78 | (sql-mode): Uses `sql-product-highlight' and | ||
| 79 | `sql-product-font-lock'. | ||
| 80 | (sql-product-interactive): New function. Common portions of | ||
| 81 | product-specific interactive mode wrappers. | ||
| 82 | (sql-interactive-mode): Rewritten to use product features. | ||
| 83 | (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql) | ||
| 84 | (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase) | ||
| 85 | (sql-db2, sql-linter): Use `sql-product-interactive'. | ||
| 86 | (sql-connect-oracle, sql-connect-sybase, sql-connect-informix) | ||
| 87 | (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid) | ||
| 88 | (sql-connect-ingres, sql-connect-postgres) | ||
| 89 | (sql-connect-interbase, sql-connect-db2, sql-connect-linter): New | ||
| 90 | functions. Format command line parameters and invoke comint on the | ||
| 91 | appropriate interpreter. Code was in the corresponding `sql-xyz' | ||
| 92 | function before. | ||
| 93 | (sql-connect-ms): New function. Support -E argument to use | ||
| 94 | operating system credentials for authentication. | ||
| 95 | |||
| 96 | 2003-07-13 Lars Hansen <larsh@math.ku.dk> | ||
| 97 | |||
| 98 | * desktop.el (desktop-buffer-dired-misc-data, desktop-buffer-dired): | ||
| 99 | Handle `dired-directory' being a list. | ||
| 100 | |||
| 101 | 2003-07-13 Jesper Harder <harder@ifa.au.dk> (tiny change) | ||
| 102 | |||
| 103 | * mail/smtpmail.el (smtpmail-send-it): Create smtpmail-queue-dir if | ||
| 104 | it doesn't exist. | ||
| 105 | |||
| 1 | 2003-07-12 Richard M. Stallman <rms@gnu.org> | 106 | 2003-07-12 Richard M. Stallman <rms@gnu.org> |
| 2 | 107 | ||
| 3 | * progmodes/cc-engine.el (c-declare-lang-variables): Don't use mapcan. | 108 | * progmodes/cc-engine.el (c-declare-lang-variables): Don't use mapcan. |