diff options
| author | Joakim Verona | 2013-01-17 00:03:27 +0100 |
|---|---|---|
| committer | Joakim Verona | 2013-01-17 00:03:27 +0100 |
| commit | 6bb5cf7058b9268b87359c49a20acf4ca8730837 (patch) | |
| tree | 864465a0f36bc0fbcf1509f75c83dcdd5af48dc7 /lisp | |
| parent | 29901a24475c9dd0e7e7bc73adb0fabf7d0a7ddd (diff) | |
| parent | e59eee439c0e379bb062ffa26361ad90fd540406 (diff) | |
| download | emacs-6bb5cf7058b9268b87359c49a20acf4ca8730837.tar.gz emacs-6bb5cf7058b9268b87359c49a20acf4ca8730837.zip | |
auto upstream
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/trace.el | 6 | ||||
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/smiley.el | 5 |
4 files changed, 16 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f324ebbad51..676ce21ff14 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-01-16 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * emacs-lisp/trace.el (trace--read-args): Use a closure and an honest | ||
| 4 | call to `eval' rather than a backquoted lambda. | ||
| 5 | |||
| 1 | 2013-01-15 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2013-01-15 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * emacs-lisp/nadvice.el (advice--tweak): Make it possible for `tweak' | 8 | * emacs-lisp/nadvice.el (advice--tweak): Make it possible for `tweak' |
diff --git a/lisp/emacs-lisp/trace.el b/lisp/emacs-lisp/trace.el index fb1b995be2b..09c4969cf18 100644 --- a/lisp/emacs-lisp/trace.el +++ b/lisp/emacs-lisp/trace.el | |||
| @@ -256,9 +256,9 @@ be printed along with the arguments in the trace." | |||
| 256 | (read-from-minibuffer "Context expression: " | 256 | (read-from-minibuffer "Context expression: " |
| 257 | nil read-expression-map t | 257 | nil read-expression-map t |
| 258 | 'read-expression-history)))) | 258 | 'read-expression-history)))) |
| 259 | `(lambda () | 259 | (lambda () |
| 260 | (let ((print-circle t)) | 260 | (let ((print-circle t)) |
| 261 | (concat " [" (prin1-to-string ,exp) "]")))))))) | 261 | (concat " [" (prin1-to-string (eval exp t)) "]")))))))) |
| 262 | 262 | ||
| 263 | ;;;###autoload | 263 | ;;;###autoload |
| 264 | (defun trace-function-foreground (function &optional buffer context) | 264 | (defun trace-function-foreground (function &optional buffer context) |
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 733f1d26510..1f1b46c8532 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-01-16 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * smiley.el (smiley-style): Make the file loadable in batch mode. | ||
| 4 | |||
| 1 | 2013-01-15 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2013-01-15 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * nnimap.el (nnimap-keepalive): Don't throw an error if there's no more | 7 | * nnimap.el (nnimap-keepalive): Don't throw an error if there's no more |
diff --git a/lisp/gnus/smiley.el b/lisp/gnus/smiley.el index 6381f5bf9d9..eb71134457c 100644 --- a/lisp/gnus/smiley.el +++ b/lisp/gnus/smiley.el | |||
| @@ -59,7 +59,10 @@ | |||
| 59 | 59 | ||
| 60 | (defcustom smiley-style | 60 | (defcustom smiley-style |
| 61 | (if (or (and (fboundp 'face-attribute) | 61 | (if (or (and (fboundp 'face-attribute) |
| 62 | (>= (face-attribute 'default :height) 160)) | 62 | ;; In batch mode, attributes can be unspecified. |
| 63 | (condition-case nil | ||
| 64 | (>= (face-attribute 'default :height) 160) | ||
| 65 | (error nil))) | ||
| 63 | (and (fboundp 'face-height) | 66 | (and (fboundp 'face-height) |
| 64 | (>= (face-height 'default) 14))) | 67 | (>= (face-height 'default) 14))) |
| 65 | 'medium | 68 | 'medium |