+2004-04-27 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * lisp/dgnushack.el (describe-key-briefly): Remove compiler macro.
+
2004-04-12 TAKAHASHI Kaoru <kaoru@kaisei.org>
* texi/ptexinfmt.el: Support @indicateurl, @LaTeX, @ordf, @ordm.
(while (setq file (pop files))
(insert "info/" file "\n"))))))
-\f
-(define-compiler-macro describe-key-briefly (&whole form key &optional insert)
- (if (condition-case nil
- (progn
- (describe-key-briefly '((())) nil)
- t)
- (wrong-number-of-arguments nil);; Old Emacsen.
- (error t))
- form
- (if insert
- `(if ,insert
- (insert (funcall 'describe-key-briefly ,key))
- (funcall 'describe-key-briefly ,key))
- `(funcall 'describe-key-briefly ,key))))
-
;;; dgnushack.el ends here