From: Stefan Monnier Date: Thu, 8 Nov 2012 14:21:21 +0000 (-0500) Subject: * lisp/emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro. X-Git-Tag: emacs-24.3.90~173^2~18^2~172 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=784c1a7b3aae2f43894ba711ae6dd77aa8bb96c7;p=emacs.git * lisp/emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e0ff05aa7dc..e44f1a7cdff 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,11 @@ 2012-11-08 Stefan Monnier + * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment): + Byte-compile *before* eval in eval-and-compile. + (byte-compile-log-warning): Remove redundant inhibit-read-only. + (byte-compile-file-form-autoload): Don't hide actual definition. + (byte-compile-maybe-guarded): Accept `functionp' as well. + * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro. 2012-11-07 Michael Albinus diff --git a/lisp/emacs-lisp/gv.el b/lisp/emacs-lisp/gv.el index 34e29ba1cbd..72c2ec60734 100644 --- a/lisp/emacs-lisp/gv.el +++ b/lisp/emacs-lisp/gv.el @@ -443,7 +443,6 @@ This is like the `&' operator of the C language." `(cons (lambda () ,getter) (lambda (gv--val) ,(funcall setter 'gv--val))))) -;;;###autoload (defsubst gv-deref (ref) "Dereference REF, returning the referenced value. This is like the `*' operator of the C language.