mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-04 11:40:22 +00:00
Require advice when compiling.
This commit is contained in:
parent
b2529d56b5
commit
20beebfe74
@ -1,3 +1,7 @@
|
||||
2007-10-15 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* help-fns.el: Require advice when compiling.
|
||||
|
||||
2007-10-14 Drew Adams <drew.adams@oracle.com>
|
||||
|
||||
* emacs-lisp/ring.el (ring-convert-sequence-to-ring)
|
||||
@ -99,8 +103,8 @@
|
||||
|
||||
2007-10-13 Dan Nicolaescu <dann@ics.uci.edu>
|
||||
|
||||
* frame.el (select-frame-set-input-focus): Fix typo
|
||||
"max" -> "mac". Do not use a single clause cond.
|
||||
* frame.el (select-frame-set-input-focus): Fix typo "max" -> "mac".
|
||||
Do not use a single clause cond.
|
||||
|
||||
* cus-start.el (all): Use test that does not match the X11 version
|
||||
for mac.
|
||||
@ -148,7 +152,7 @@
|
||||
(idlwave-complete-in-buffer):
|
||||
* textmodes/org.el (org-export-as-html, org-export-as-ascii)
|
||||
(org-fast-tag-selection):
|
||||
* textmodes/reftex-sel.el (reftex-select-item): Use mapc rather
|
||||
* textmodes/reftex-sel.el (reftex-select-item): Use mapc rather
|
||||
than mapcar.
|
||||
|
||||
2007-10-13 Dan Nicolaescu <dann@ics.uci.edu>
|
||||
|
@ -34,6 +34,7 @@
|
||||
;;; Code:
|
||||
|
||||
(require 'help-mode)
|
||||
(eval-when-compile (require 'advice))
|
||||
|
||||
;; Functions
|
||||
|
||||
@ -239,7 +240,7 @@ face (according to `face-differs-from-default-p')."
|
||||
".elc"))
|
||||
load-path))
|
||||
(str (if (and elc-file (file-readable-p elc-file))
|
||||
(with-temp-buffer
|
||||
(with-temp-buffer
|
||||
(insert-file-contents-literally elc-file nil 0 256)
|
||||
(buffer-string))))
|
||||
(src-file (and str
|
||||
|
Loading…
Reference in New Issue
Block a user