agenda: Clarification of error message
* lisp/org-agenda.el (org-agenda-check-type): Mention also 'component' in the error message since it could be just the unallowed component in a composed agenda buffer from which some action has been triggered.
This commit is contained in:
parent
80b29acba3
commit
28bb1c81fa
|
@ -7308,14 +7308,14 @@ subtree."
|
||||||
;;; Agenda commands
|
;;; Agenda commands
|
||||||
|
|
||||||
(defun org-agenda-check-type (error &rest types)
|
(defun org-agenda-check-type (error &rest types)
|
||||||
"Check if agenda buffer is of allowed type.
|
"Check if agenda buffer or component is of allowed type.
|
||||||
If ERROR is non-nil, throw an error, otherwise just return nil.
|
If ERROR is non-nil, throw an error, otherwise just return nil.
|
||||||
Allowed types are `agenda' `todo' `tags' `search'."
|
Allowed types are `agenda' `todo' `tags' `search'."
|
||||||
(cond ((not org-agenda-type)
|
(cond ((not org-agenda-type)
|
||||||
(error "No Org agenda currently displayed"))
|
(error "No Org agenda currently displayed"))
|
||||||
((memq org-agenda-type types) t)
|
((memq org-agenda-type types) t)
|
||||||
(error
|
(error
|
||||||
(error "Not allowed in %s-type agenda buffers" org-agenda-type))
|
(error "Not allowed in '%s'-type agenda buffer or component" org-agenda-type))
|
||||||
(t nil)))
|
(t nil)))
|
||||||
|
|
||||||
(defun org-agenda-Quit ()
|
(defun org-agenda-Quit ()
|
||||||
|
@ -7561,7 +7561,7 @@ an already existing regexp filter."
|
||||||
"Narrow to entries matching regexp: ")))))
|
"Narrow to entries matching regexp: ")))))
|
||||||
(push flt org-agenda-regexp-filter)
|
(push flt org-agenda-regexp-filter)
|
||||||
(org-agenda-filter-apply org-agenda-regexp-filter 'regexp))))))
|
(org-agenda-filter-apply org-agenda-regexp-filter 'regexp))))))
|
||||||
|
|
||||||
(defvar org-agenda-effort-filter nil)
|
(defvar org-agenda-effort-filter nil)
|
||||||
(defun org-agenda-filter-by-effort (strip-or-accumulate)
|
(defun org-agenda-filter-by-effort (strip-or-accumulate)
|
||||||
"Filter agenda entries by effort.
|
"Filter agenda entries by effort.
|
||||||
|
|
Loading…
Reference in New Issue