aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorStefan Monnier2012-12-06 12:29:30 -0500
committerStefan Monnier2012-12-06 12:29:30 -0500
commit93852cb0cf22a38d75edeb840e498b3aa6a4d7c9 (patch)
treef1ab538b6cf3c93241a385104c3bdf246b52e2b9 /lisp/ChangeLog
parent853c1ffc037f4adc402bea59e3beb03860e63ff7 (diff)
downloademacs-93852cb0cf22a38d75edeb840e498b3aa6a4d7c9.tar.gz
emacs-93852cb0cf22a38d75edeb840e498b3aa6a4d7c9.zip
* lisp/progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
(sql-signum): Remove. Use `cl-signum' instead. (sql-read-passwd): Remove; use read-passwd instread. (sql-get-login-ext): Use read-string. (sql-get-login): Use dolist and pcase. (sql--completion-table): Rename from sql-try-completion. Use complete-with-action. (sql-mode): Don't change abbrev-all-caps globally. (sql-connect): Don't rely on dynamic scoping for `new-name'. (sql-postgres-completion-object): Initialize vars in their `let'. (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql) (sql-comint-solid, sql-comint-ms, sql-comint-postgres) (sql-comint-interbase): Use a single append, without setq. (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog15
1 files changed, 15 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 82b311acf0d..d94ffbab67e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,20 @@
12012-12-06 Stefan Monnier <monnier@iro.umontreal.ca> 12012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
4 (sql-signum): Remove. Use `cl-signum' instead.
5 (sql-read-passwd): Remove; use read-passwd instread.
6 (sql-get-login-ext): Use read-string.
7 (sql-get-login): Use dolist and pcase.
8 (sql--completion-table): Rename from sql-try-completion.
9 Use complete-with-action.
10 (sql-mode): Don't change abbrev-all-caps globally.
11 (sql-connect): Don't rely on dynamic scoping for `new-name'.
12 (sql-postgres-completion-object): Initialize vars in their `let'.
13 (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql)
14 (sql-comint-solid, sql-comint-ms, sql-comint-postgres)
15 (sql-comint-interbase): Use a single append, without setq.
16 (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
17
3 * hi-lock.el: Rework the default face and the serialize regexp code. 18 * hi-lock.el: Rework the default face and the serialize regexp code.
4 (hi-lock--auto-select-face-defaults): Remove. 19 (hi-lock--auto-select-face-defaults): Remove.
5 (hi-lock-string-serialize-serial): Remove. 20 (hi-lock-string-serialize-serial): Remove.