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 304c179..2b61509 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 e051739..e50b5b3 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