summaryrefslogtreecommitdiff
path: root/lisp/misc.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2011-05-10 01:57:40 +0200
committerJuanma Barranquero <lekktu@gmail.com>2011-05-10 01:57:40 +0200
commit84f29e6bd8cb51953a260e8d0ad901f7d1ac23c5 (patch)
tree3d10a6e548fefe61c4264ca32e07751165d759d6 /lisp/misc.el
parentc07b2710c7a48d436e21b3c0a51dbc7f3b98230a (diff)
downloademacs-84f29e6bd8cb51953a260e8d0ad901f7d1ac23c5.tar.gz
lisp/misc.el: Require tabulated-list.el during compilation.
Diffstat (limited to 'lisp/misc.el')
-rw-r--r--lisp/misc.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/misc.el b/lisp/misc.el
index e05173992b6..e50b5b38c75 100644
--- a/lisp/misc.el
+++ b/lisp/misc.el
@@ -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