]> code.delx.au - gnu-emacs/commitdiff
lisp/misc.el: Require tabulated-list.el during compilation.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 9 May 2011 23:57:40 +0000 (01:57 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 9 May 2011 23:57:40 +0000 (01:57 +0200)
lisp/ChangeLog
lisp/misc.el

index 304c1792b920825e49133b6cc981a27886c1da9f..2b61509fb304411b07cb3c682ed405e5efe48597 100644 (file)
@@ -1,3 +1,7 @@
+2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
+
+       * misc.el: Require tabulated-list.el during compilation.
+
 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
 
        * progmodes/compile.el (compilation-start): Run
index e05173992b62b0ad815b367fe89200973de3da30..e50b5b38c756a593ea666498ae8ad3a4c27b7b34 100644 (file)
@@ -25,6 +25,9 @@
 
 ;;; Code:
 
+(eval-when-compile
+  (require 'tabulated-list))
+
 (defun copy-from-above-command (&optional arg)
   "Copy characters from previous nonblank line, starting just above point.
 Copy ARG characters, but not past the end of that line.
@@ -182,7 +185,6 @@ The return value is always nil."
   (display-buffer buffer)
   nil)
 
-
 (provide 'misc)
 
 ;;; misc.el ends here