all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Dynamically constructing advice behaves strangely
@ 2016-02-14 14:59 Marcin Borkowski
  2016-02-14 15:34 ` Michael Heerdegen
  2016-02-14 15:44 ` Michael Heerdegen
  0 siblings, 2 replies; 5+ messages in thread
From: Marcin Borkowski @ 2016-02-14 14:59 UTC (permalink / raw)
  To: Help Gnu Emacs mailing list

Hi list,

I want to be able to construct advice dynamically.  Here is a "minimal
example":

--8<---------------cut here---------------start------------->8---
;;;   -*- lexical-binding: t; -*-

(defun add-constructed-advice (fun)
  "Add a constructed advice to function foo."
  (let* ((fun-name (symbol-name fun))
	 (length-sym
	  (make-symbol (concat "length-of-" fun-name)))
	 (piece-of-advice-sym
	  (make-symbol (concat "advice-for-" fun-name)))
	 (piece-of-advice (lambda (orig-fun &rest args)
			    (apply orig-fun args)
			    (message "This function's name had length %s."
				     (symbol-value length-sym)))))
    
    (set length-sym (length (symbol-name fun)))
    (fset piece-of-advice-sym piece-of-advice)
    (advice-add fun :around piece-of-advice-sym)))

(defun foo-fun ()
  ""
  (message "Function foo-fun run."))

(add-constructed-advice 'foo-fun)
--8<---------------cut here---------------end--------------->8---

This works (i.e., M-: foo-fun properly runs the advice), but I expected
the symbol `advice-for-foo-fun' to have this piece of advice in its
function cell - and it does not.  Why?

TIA,

-- 
Marcin Borkowski
http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski
Faculty of Mathematics and Computer Science
Adam Mickiewicz University



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-02-14 20:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-14 14:59 Dynamically constructing advice behaves strangely Marcin Borkowski
2016-02-14 15:34 ` Michael Heerdegen
2016-02-14 20:57   ` Marcin Borkowski
2016-02-14 15:44 ` Michael Heerdegen
2016-02-14 20:58   ` Marcin Borkowski

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.