GNU bug report logs -
#16807
24.3.50; changes in advice.el break multi-term.el
Previous Next
Reported by: henry atting <snd <at> online.de>
Date: Wed, 19 Feb 2014 07:33:04 UTC
Severity: normal
Tags: notabug, wontfix
Found in version 24.3.50
Done: Glenn Morris <rgm <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
In GNU Emacs 24.3.50.1 (i686-pc-linux-gnu, GTK+ Version 3.8.6)
of 2014-02-08 on bye
I know multi-term.el is not part of emacs and, what is more, isn't
developed anymore as far as I can see. So take it much more as a brief
remark than as a bug report.
Following function and macro where removed from advice.el:
(defmacro ad-macro-p (definition)
;;"non-nil if DEFINITION is a macro."
(` (eq (car-safe (, definition)) 'macro)))
(defun ad-advised-definition-p (definition)
;;"non-nil if DEFINITION was generated from advice information."
(if (or (ad-lambda-p definition)
(ad-macro-p definition)
(ad-compiled-p definition))
(let ((docstring (ad-docstring definition)))
(and (stringp docstring)
(string-match
ad-advised-definition-docstring-regexp docstring)))))
But multi-term depends on it.
Putting these lines somewhere at the beginning of ~/.emacs works for me
as a workaround.
This bug report was last modified 11 years and 141 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.