Browse Source

Merge branch 'maint'

Bastien Guerry 11 years ago
parent
commit
319b09a1c4
2 changed files with 8 additions and 18 deletions
  1. 5 4
      lisp/org-agenda.el
  2. 3 14
      lisp/org-compat.el

+ 5 - 4
lisp/org-agenda.el

@@ -2160,7 +2160,8 @@ The following commands are available:
 	  org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
 	  org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
 	  org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode
 	  org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode
 	  org-agenda-show-log org-agenda-start-with-log-mode))
 	  org-agenda-show-log org-agenda-start-with-log-mode))
-
+  (add-to-invisibility-spec '(org-filtered))
+  (add-to-invisibility-spec '(org-link))
   (easy-menu-change
   (easy-menu-change
    '("Agenda") "Agenda Files"
    '("Agenda") "Agenda Files"
    (append
    (append
@@ -7631,7 +7632,7 @@ When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
 	 (e (point-at-eol)))
 	 (e (point-at-eol)))
     (let ((inhibit-read-only t))
     (let ((inhibit-read-only t))
       (add-text-properties
       (add-text-properties
-       b e `(invisible t org-filtered t org-filter-type ,type)))))
+       b e `(invisible org-filtered org-filter-type ,type)))))
 
 
 (defun org-agenda-remove-filter (type)
 (defun org-agenda-remove-filter (type)
   (interactive)
   (interactive)
@@ -7643,7 +7644,7 @@ When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
 	(goto-char pos)
 	(goto-char pos)
 	(remove-text-properties
 	(remove-text-properties
 	 (point) (next-single-property-change (point) 'org-filter-type)
 	 (point) (next-single-property-change (point) 'org-filter-type)
-	 `(invisible t org-filter-type ,type))))
+	 `(invisible org-filtered org-filter-type ,type))))
     (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
     (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
     (setq org-agenda-filter-form nil)
     (setq org-agenda-filter-form nil)
     (org-agenda-set-mode-name)
     (org-agenda-set-mode-name)
@@ -9142,7 +9143,7 @@ Called with a universal prefix arg, show the priority instead of setting it."
             (add-text-properties
             (add-text-properties
 	     (1- (point)) (point-at-eol)
 	     (1- (point)) (point-at-eol)
 	     (list 'display (org-add-props stamp nil
 	     (list 'display (org-add-props stamp nil
-			      'face 'secondary-selection))))
+			      'face '(secondary-selection default)))))
 	  (beginning-of-line 1))
 	  (beginning-of-line 1))
 	(beginning-of-line 0)))))
 	(beginning-of-line 0)))))
 
 

+ 3 - 14
lisp/org-compat.el

@@ -312,8 +312,7 @@ Works on both Emacs and XEmacs."
 (defun org-in-invisibility-spec-p (arg)
 (defun org-in-invisibility-spec-p (arg)
   "Is ARG a member of `buffer-invisibility-spec'?"
   "Is ARG a member of `buffer-invisibility-spec'?"
   (if (consp buffer-invisibility-spec)
   (if (consp buffer-invisibility-spec)
-      (member arg buffer-invisibility-spec)
-    nil))
+      (member arg buffer-invisibility-spec)))
 
 
 (defmacro org-xemacs-without-invisibility (&rest body)
 (defmacro org-xemacs-without-invisibility (&rest body)
   "Turn off extents with invisibility while executing BODY."
   "Turn off extents with invisibility while executing BODY."
@@ -347,18 +346,8 @@ Works on both Emacs and XEmacs."
   "Move to column COLUMN.
   "Move to column COLUMN.
 Pass COLUMN and FORCE to `move-to-column'.
 Pass COLUMN and FORCE to `move-to-column'.
 Pass BUFFER to the XEmacs version of `move-to-column'."
 Pass BUFFER to the XEmacs version of `move-to-column'."
-  (let* ((with-bracket-link
-	  (save-excursion
-	    (forward-line 0)
-	    (looking-at (concat "^.*" org-bracket-link-regexp))))
-	 (buffer-invisibility-spec
-	  (cond
-	   ((or (not (derived-mode-p 'org-mode))
-		(and with-bracket-link (org-invisible-p2)))
-	    (remove '(org-link) buffer-invisibility-spec))
-	   (with-bracket-link
-	    (remove t buffer-invisibility-spec))
-	   (t buffer-invisibility-spec))))
+  (let ((buffer-invisibility-spec
+	 (remove '(org-filtered) buffer-invisibility-spec)))
     (if (featurep 'xemacs)
     (if (featurep 'xemacs)
 	(org-xemacs-without-invisibility
 	(org-xemacs-without-invisibility
 	 (move-to-column column force buffer))
 	 (move-to-column column force buffer))