From 8dfd6a6140f400187daaa35e2addd973e6f3405e Mon Sep 17 00:00:00 2001 From: Achim Gratz Date: Wed, 24 Nov 2010 03:27:06 +0000 Subject: [PATCH] Fixup 95bb16661b22ce83326f13304ed4ad690cc03eba * org.el: remove spurious linebreak introduced by earlier patch * ob.el, ob-ref.el: remove double fix of the same problem Achim Gratz wrote: > this patch had already been partially applied by Carsten and Eric (in > slightly a different way than I suggested). The changes to ob.el and > ob-ref.el (the require statements) are therefore superfluous and should > probably be backed out. There was also a superfluous whitespace change > in org.el (a closing paren that was broken onto the next line). Patch > to this effect is attached. You've already cleaned up org-agenda.el and > the conditions in org-macs... --- lisp/ob-ref.el | 1 - lisp/ob.el | 1 - 2 files changed, 2 deletions(-) diff --git a/lisp/ob-ref.el b/lisp/ob-ref.el index 2ca99ca65..7995341c9 100644 --- a/lisp/ob-ref.el +++ b/lisp/ob-ref.el @@ -51,7 +51,6 @@ ;;; Code: (require 'ob) (eval-when-compile - (require 'org-list) (require 'cl)) (declare-function org-remove-if-not "org" (predicate seq)) diff --git a/lisp/ob.el b/lisp/ob.el index 1c9f9fdbc..fe50bb911 100644 --- a/lisp/ob.el +++ b/lisp/ob.el @@ -30,7 +30,6 @@ ;;; Code: (eval-when-compile - (require 'org-list) (require 'cl)) (require 'ob-eval) (require 'org-macs)