emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r104178: lisp/misc.el: Require tabula


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104178: lisp/misc.el: Require tabulated-list.el during compilation.
Date: Tue, 10 May 2011 01:57:40 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104178
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Tue 2011-05-10 01:57:40 +0200
message:
  lisp/misc.el: Require tabulated-list.el during compilation.
modified:
  lisp/ChangeLog
  lisp/misc.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-05-09 19:42:45 +0000
+++ b/lisp/ChangeLog    2011-05-09 23:57:40 +0000
@@ -1,3 +1,7 @@
+2011-05-09  Juanma Barranquero  <address@hidden>
+
+       * misc.el: Require tabulated-list.el during compilation.
+
 2011-05-09  Chong Yidong  <address@hidden>
 
        * progmodes/compile.el (compilation-start): Run

=== modified file 'lisp/misc.el'
--- a/lisp/misc.el      2011-05-09 15:52:57 +0000
+++ b/lisp/misc.el      2011-05-09 23:57:40 +0000
@@ -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 @@
   (display-buffer buffer)
   nil)
 
-
 (provide 'misc)
 
 ;;; misc.el ends here


reply via email to

[Prev in Thread] Current Thread [Next in Thread]