# HG changeset patch # User Carsten Dominik # Date 1184342926 0 # Node ID 22dc3b6be3d486c2354c9db978949979dacc3b56 # Parent a59eb87143aea4cfd1d34cf4b814371fa8d7817f Move to end of line if in headline without tags. diff -r a59eb87143ae -r 22dc3b6be3d4 lisp/textmodes/org.el --- a/lisp/textmodes/org.el Fri Jul 13 16:08:21 2007 +0000 +++ b/lisp/textmodes/org.el Fri Jul 13 16:08:46 2007 +0000 @@ -5,7 +5,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://www.astro.uva.nl/~dominik/Tools/org/ -;; Version: 5.03 +;; Version: 5.03b ;; ;; This file is part of GNU Emacs. ;; @@ -83,7 +83,7 @@ ;;; Version -(defconst org-version "5.03" +(defconst org-version "5.03b" "The version number of the file org.el.") (defun org-version () (interactive) @@ -23525,7 +23525,8 @@ (if (or (< pos (match-beginning 1)) (= pos (match-end 0))) (goto-char (match-beginning 1)) - (goto-char (match-end 0))))))) + (goto-char (match-end 0))) + (end-of-line arg))))) (define-key org-mode-map "\C-a" 'org-beginning-of-line) (define-key org-mode-map "\C-e" 'org-end-of-line)