Browse Source

Fix code typo

Carsten Dominik 14 years ago
parent
commit
a7660225af
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org-agenda.el

+ 1 - 1
lisp/org-agenda.el

@@ -2629,7 +2629,7 @@ Drawers will be excluded, also the line with scheduling/deadline info."
 	  (end-of-line 1)
 	  (end-of-line 1)
 	  (if (string-match "\\S-" txt)
 	  (if (string-match "\\S-" txt)
 	      (insert "\n" 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
 (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
 					      &rest keep)
 					      &rest keep)