diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-04-26 08:43:28 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-04-26 08:43:28 -0400 |
commit | e95a67dc75c3d41c428d6e215426f321b5a2f9e5 (patch) | |
tree | 942041f2385c9506f52b6c97af7e4cee34f917db /lisp/mpc.el | |
parent | 4c3fa1d9adf3dca80e86b45488b0556f5f0fa495 (diff) | |
download | emacs-e95a67dc75c3d41c428d6e215426f321b5a2f9e5.tar.gz |
Replace lexical-let by lexical-binding (except Gnus, CEDET, ERT).
* lisp/term/ns-win.el (ns-define-service):
* lisp/progmodes/pascal.el (pascal-goto-defun):
* lisp/progmodes/js.el (js--read-tab):
* lisp/progmodes/etags.el (tags-lazy-completion-table):
* lisp/emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
* lisp/emacs-lisp/ewoc.el (ewoc--wrap):
* lisp/emacs-lisp/assoc.el (aput, adelete, amake):
* lisp/doc-view.el (doc-view-convert-current-doc):
* lisp/url/url.el (url-retrieve-synchronously):
* lisp/vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
Diffstat (limited to 'lisp/mpc.el')
-rw-r--r-- | lisp/mpc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mpc.el b/lisp/mpc.el index ea7f6793309..a908e4bedac 100644 --- a/lisp/mpc.el +++ b/lisp/mpc.el @@ -406,7 +406,7 @@ which will be concatenated with proper quoting before passing them to MPD." (funcall callback (prog1 (mpc-proc-buf-to-alist (current-buffer)) (set-buffer buf)))))) - ;; (lexical-let ((res nil)) + ;; (let ((res nil)) ;; (mpc-proc-cmd-to-alist cmd (lambda (alist) (setq res alist))) ;; (mpc-proc-sync) ;; res) |