summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2010-08-21 08:37:11 +0200
committerCarsten Dominik <carsten.dominik@gmail.com>2010-08-21 08:37:11 +0200
commita7660225af1737cc887fc57a2d2fa87ba8975206 (patch)
tree2e6791c0d1e6e42b54534df7be96155104be90d4
parent96bacc020bef95861543b34985c2cc1190fb918c (diff)
downloadorg-mode-a7660225af1737cc887fc57a2d2fa87ba8975206.tar.gz
Fix code typo
-rw-r--r--lisp/org-agenda.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 4bf38c6..44edca5 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -2629,7 +2629,7 @@ Drawers will be excluded, also the line with scheduling/deadline info."
(end-of-line 1)
(if (string-match "\\S-" txt)
(insert "\n" txt)
- (or (eobp (forward-char 1)))))))))
+ (or (eobp) (forward-char 1))))))))
(defun org-agenda-get-some-entry-text (marker n-lines &optional indent
&rest keep)