Release 5.13g

This commit is contained in:
Carsten Dominik 2008-01-31 11:37:28 +01:00
parent fc2d68abf0
commit 1bf1a4d4b2
8 changed files with 205 additions and 164 deletions

View File

@ -1,24 +1,32 @@
2007-10-24 Carsten Dominik <dominik@science.uva.nl> 2007-10-25 Carsten Dominik <dominik@science.uva.nl>
* org.el (org-agenda-get-restriction-and-command): Fix window size. * org.el (org-todo): Restore match data before doing the
(org-read-date-get-relative): Require [-+] at the beginning. replacement.
2007-10-23 Carsten Dominik <dominik@science.uva.nl>
* org.el (org-open-link-from-string): New function.
(org-columns-open-link): New commands.
2007-10-22 Carsten Dominik <dominik@science.uva.nl>
* org.el (org-scan-tags): Handle indirect buffers.
----------------------------------------------------------------------- -----------------------------------------------------------------------
Installed as 5.13d Installed as 5.13f
2007-10-22 Carsten Dominik <dominik@science.uva.nl> 2007-10-24 Carsten Dominik <dominik@science.uva.nl>
* org.el (org-read-date-get-relative): New function. * org-publish.el (org-publish-get-plist-from-filename): Use `mapc'
instead of `mapcar'.
* org.el (org-agenda-get-restriction-and-command): Use `mapc'
instead of `mapcar'.
(org-agenda-list): Numeric prefix argument can specify the number
of days.
(remember-register, remember-buffer): Prevent byte compiler from
complaining.
* org.el (org-agenda-get-restriction-and-command): Fix window
size.
(org-read-date-get-relative): Require [-+] at the beginning.
(org-open-link-from-string): New function.
(org-columns-open-link): New commands.
(org-scan-tags): Handle indirect buffers.
(org-read-date-get-relative): New function.
(org-agenda-file-regexp): New variable. (org-agenda-file-regexp): New variable.
(org-agenda-files): Allow directories in the variable. (org-agenda-files): Allow directories in the variable.
(org-agenda-get-restriction-and-command): New function. (org-agenda-get-restriction-and-command): New function.

View File

@ -179,12 +179,19 @@ release:
cp org-release/org-$(TAG).tar.gz org-release/org.tar.gz cp org-release/org-$(TAG).tar.gz org-release/org.tar.gz
(cd $(HG_RELEASES); rm -rf $(DISTFILES) xemacs) (cd $(HG_RELEASES); rm -rf $(DISTFILES) xemacs)
cp -r org-$(TAG)/* $(HG_RELEASES) cp -r org-$(TAG)/* $(HG_RELEASES)
(cd $(HG_RELEASES); hg addremove; hg ci -m $(TAG); hg tag $(TAG)) (cd $(HG_RELEASES); hg addremove; hg ci -m $(TAG); hg tag -f $(TAG))
trackrelease: trackrelease:
(cd $(HG_RELEASES); rm -rf $(DISTFILES) xemacs) (cd $(HG_RELEASES); rm -rf $(DISTFILES) xemacs)
cp -r org-$(TAG)/* $(HG_RELEASES) cp -r org-$(TAG)/* $(HG_RELEASES)
(cd $(HG_RELEASES); hg addremove; hg ci -m $(TAG); hg tag $(TAG)) (cd $(HG_RELEASES); hg addremove; hg ci -m $(TAG); hg tag -f $(TAG))
upload:
(cd org-release; lftp -f ../ftp_script)
relup:
make release
make upload
dist: dist:
make distfile TAG=$(TAG) make distfile TAG=$(TAG)

237
org
View File

@ -3978,6 +3978,7 @@ File: org, Node: Setting up remember, Next: Remember templates, Prev: Remembe
The following customization will tell remember to use org files as The following customization will tell remember to use org files as
target, and to create annotations compatible with Org-mode links. target, and to create annotations compatible with Org-mode links.
(require 'remember)
(setq org-directory "~/path/to/my/orgfiles/") (setq org-directory "~/path/to/my/orgfiles/")
(setq org-default-notes-file (concat org-directory "/notes.org")) (setq org-default-notes-file (concat org-directory "/notes.org"))
(setq remember-annotation-functions '(org-remember-annotation)) (setq remember-annotation-functions '(org-remember-annotation))
@ -4297,10 +4298,9 @@ paper agenda, showing all the tasks for the current week or day.
`C-c a a' `C-c a a'
Compile an agenda for the current week from a list of org files. Compile an agenda for the current week from a list of org files.
The agenda shows the entries for each day. With a `C-u' prefix (or The agenda shows the entries for each day. With a numeric
when the variable `org-agenda-include-all-todo' is `t'), all prefix(1) (like `C-u 2 1 C-c a a') you may set the number of days
unfinished TODO items (including those without a date) are also to be displayed (see also the variable `org-agenda-ndays')
listed at the beginning of the buffer, before the first date.
Remote editing from the agenda buffer means, for example, that you Remote editing from the agenda buffer means, for example, that you
can change the dates of deadlines and appointments from the agenda can change the dates of deadlines and appointments from the agenda
@ -4360,6 +4360,12 @@ list of your appointments and add only those belonging to a specific
category or matching a regular expression. See the docstring for category or matching a regular expression. See the docstring for
details. details.
---------- Footnotes ----------
(1) For backward compatibility, the universal prefix `C-u' causes
all TODO entries to be listed before the agenda. This feature is
deprecated, use the dedicated TODO list, or a block agenda instead.
 
File: org, Node: Global TODO list, Next: Matching tags and properties, Prev: Weekly/Daily agenda, Up: Built-in agenda views File: org, Node: Global TODO list, Next: Matching tags and properties, Prev: Weekly/Daily agenda, Up: Built-in agenda views
@ -7647,8 +7653,8 @@ Index
* API, for properties <1>: Property API. (line 6) * API, for properties <1>: Property API. (line 6)
* API, for properties: Using the property API. * API, for properties: Using the property API.
(line 6) (line 6)
* appointment reminders: Weekly/Daily agenda. (line 66) * appointment reminders: Weekly/Daily agenda. (line 65)
* appt.el: Weekly/Daily agenda. (line 66) * appt.el: Weekly/Daily agenda. (line 65)
* archive locations: Moving subtrees. (line 23) * archive locations: Moving subtrees. (line 23)
* archiving: Archiving. (line 6) * archiving: Archiving. (line 6)
* ASCII export: ASCII export. (line 6) * ASCII export: ASCII export. (line 6)
@ -7671,7 +7677,7 @@ Index
* calculations, in tables: Built-in table editor. * calculations, in tables: Built-in table editor.
(line 143) (line 143)
* calendar commands, from agenda: Agenda commands. (line 196) * calendar commands, from agenda: Agenda commands. (line 196)
* calendar integration: Weekly/Daily agenda. (line 24) * calendar integration: Weekly/Daily agenda. (line 23)
* calendar, for selecting date: The date/time prompt. * calendar, for selecting date: The date/time prompt.
(line 42) (line 42)
* category: Categories. (line 6) * category: Categories. (line 6)
@ -7729,7 +7735,7 @@ Index
(line 97) (line 97)
* demotion, of subtrees: Structure editing. (line 6) * demotion, of subtrees: Structure editing. (line 6)
* diary entries, creating from agenda: Agenda commands. (line 201) * diary entries, creating from agenda: Agenda commands. (line 201)
* diary integration: Weekly/Daily agenda. (line 24) * diary integration: Weekly/Daily agenda. (line 23)
* dictionary word completion: Completion. (line 6) * dictionary word completion: Completion. (line 6)
* directories, for publishing: Sources and destinations. * directories, for publishing: Sources and destinations.
(line 6) (line 6)
@ -8624,112 +8630,113 @@ Ref: Clocking work time-Footnote-1160828
Ref: Clocking work time-Footnote-2160906 Ref: Clocking work time-Footnote-2160906
Node: Remember161032 Node: Remember161032
Node: Setting up remember161911 Node: Setting up remember161911
Node: Remember templates162514 Node: Remember templates162539
Ref: Remember templates-Footnote-1166075 Ref: Remember templates-Footnote-1166100
Ref: Remember templates-Footnote-2166258 Ref: Remember templates-Footnote-2166283
Node: Storing notes166356 Node: Storing notes166381
Ref: Storing notes-Footnote-1168835 Ref: Storing notes-Footnote-1168860
Node: Agenda views168937 Node: Agenda views168962
Node: Agenda files170888 Node: Agenda files170913
Ref: Agenda files-Footnote-1171976 Ref: Agenda files-Footnote-1172001
Ref: Agenda files-Footnote-2172125 Ref: Agenda files-Footnote-2172150
Node: Agenda dispatcher172318 Node: Agenda dispatcher172343
Ref: Agenda dispatcher-Footnote-1174372 Ref: Agenda dispatcher-Footnote-1174397
Ref: Agenda dispatcher-Footnote-2174466 Ref: Agenda dispatcher-Footnote-2174491
Node: Built-in agenda views174560 Node: Built-in agenda views174585
Node: Weekly/Daily agenda175142 Node: Weekly/Daily agenda175167
Node: Global TODO list178479 Ref: Weekly/Daily agenda-Footnote-1178465
Node: Matching tags and properties180759 Node: Global TODO list178669
Node: Timeline181850 Node: Matching tags and properties180949
Node: Stuck projects182524 Node: Timeline182040
Node: Presentation and sorting184377 Node: Stuck projects182714
Node: Categories185170 Node: Presentation and sorting184567
Ref: Categories-Footnote-1185881 Node: Categories185360
Node: Time-of-day specifications186201 Ref: Categories-Footnote-1186071
Node: Sorting of agenda items188174 Node: Time-of-day specifications186391
Node: Agenda commands189458 Node: Sorting of agenda items188364
Node: Custom agenda views196921 Node: Agenda commands189648
Node: Storing searches197642 Node: Custom agenda views197111
Ref: Storing searches-Footnote-1200176 Node: Storing searches197832
Node: Block agenda200293 Ref: Storing searches-Footnote-1200366
Node: Setting Options201525 Node: Block agenda200483
Node: Exporting Agenda Views204266 Node: Setting Options201715
Ref: Exporting Agenda Views-Footnote-1208552 Node: Exporting Agenda Views204456
Ref: Exporting Agenda Views-Footnote-2208609 Ref: Exporting Agenda Views-Footnote-1208742
Node: Extracting Agenda Information for other programs208795 Ref: Exporting Agenda Views-Footnote-2208799
Node: Embedded LaTeX212923 Node: Extracting Agenda Information for other programs208985
Ref: Embedded LaTeX-Footnote-1214017 Node: Embedded LaTeX213113
Node: Math symbols214207 Ref: Embedded LaTeX-Footnote-1214207
Node: Subscripts and Superscripts214974 Node: Math symbols214397
Node: LaTeX fragments215820 Node: Subscripts and Superscripts215164
Ref: LaTeX fragments-Footnote-1218053 Node: LaTeX fragments216010
Ref: LaTeX fragments-Footnote-2218314 Ref: LaTeX fragments-Footnote-1218243
Node: Processing LaTeX fragments218448 Ref: LaTeX fragments-Footnote-2218504
Node: CDLaTeX mode219396 Node: Processing LaTeX fragments218638
Ref: CDLaTeX mode-Footnote-1221882 Node: CDLaTeX mode219586
Node: Exporting222030 Ref: CDLaTeX mode-Footnote-1222072
Node: ASCII export223497 Node: Exporting222220
Node: HTML export224998 Node: ASCII export223687
Node: HTML Export commands225624 Node: HTML export225188
Node: Quoting HTML tags227411 Node: HTML Export commands225814
Node: Links228046 Node: Quoting HTML tags227601
Node: Images228743 Node: Links228236
Ref: Images-Footnote-1229614 Node: Images228933
Node: CSS support229675 Ref: Images-Footnote-1229804
Ref: CSS support-Footnote-1230994 Node: CSS support229865
Node: LaTeX export231107 Ref: CSS support-Footnote-1231184
Node: LaTeX export commands231431 Node: LaTeX export231297
Node: Quoting LaTeX code232593 Node: LaTeX export commands231621
Node: XOXO export233098 Node: Quoting LaTeX code232783
Node: iCalendar export233538 Node: XOXO export233288
Node: Text interpretation235007 Node: iCalendar export233728
Node: Comment lines235598 Node: Text interpretation235197
Node: Initial text235993 Node: Comment lines235788
Node: Footnotes237662 Node: Initial text236183
Node: Enhancing text238453 Node: Footnotes237852
Ref: Enhancing text-Footnote-1240322 Node: Enhancing text238643
Node: Export options240412 Ref: Enhancing text-Footnote-1240512
Node: Publishing242814 Node: Export options240602
Ref: Publishing-Footnote-1243775 Node: Publishing243004
Ref: Publishing-Footnote-2243919 Ref: Publishing-Footnote-1243965
Node: Configuration244070 Ref: Publishing-Footnote-2244109
Node: Project alist244788 Node: Configuration244260
Node: Sources and destinations245854 Node: Project alist244978
Node: Selecting files246584 Node: Sources and destinations246044
Node: Publishing action247332 Node: Selecting files246774
Node: Publishing options248666 Node: Publishing action247522
Node: Publishing links251041 Node: Publishing options248856
Node: Project page index252554 Node: Publishing links251231
Node: Sample configuration253332 Node: Project page index252744
Node: Simple example253824 Node: Sample configuration253522
Node: Complex example254497 Node: Simple example254014
Node: Triggering publication256573 Node: Complex example254687
Node: Miscellaneous257258 Node: Triggering publication256763
Node: Completion257892 Node: Miscellaneous257448
Node: Customization259562 Node: Completion258082
Node: In-buffer settings260145 Node: Customization259752
Node: The very busy C-c C-c key265815 Node: In-buffer settings260335
Node: Clean view267670 Node: The very busy C-c C-c key266005
Node: TTY keys270247 Node: Clean view267860
Node: Interaction271857 Node: TTY keys270437
Node: Cooperation272254 Node: Interaction272047
Node: Conflicts275130 Node: Cooperation272444
Node: Bugs277133 Node: Conflicts275320
Node: Extensions and Hacking278629 Node: Bugs277323
Node: Extensions279354 Node: Extensions and Hacking278819
Node: Adding hyperlink types281616 Node: Extensions279544
Node: Tables in arbitrary syntax285278 Node: Adding hyperlink types281806
Node: Radio tables286367 Node: Tables in arbitrary syntax285468
Node: A LaTeX example288870 Node: Radio tables286557
Ref: A LaTeX example-Footnote-1292516 Node: A LaTeX example289060
Ref: A LaTeX example-Footnote-2292664 Ref: A LaTeX example-Footnote-1292706
Node: Translator functions293099 Ref: A LaTeX example-Footnote-2292854
Ref: Translator functions-Footnote-1296208 Node: Translator functions293289
Node: Dynamic blocks296296 Ref: Translator functions-Footnote-1296398
Node: Special agenda views298268 Node: Dynamic blocks296486
Node: Using the property API301513 Node: Special agenda views298458
Node: History and Acknowledgments302994 Node: Using the property API301703
Node: Index309555 Node: History and Acknowledgments303184
Node: Key Index344624 Node: Index309745
Node: Key Index344814
 
End Tag Table End Tag Table

View File

@ -426,7 +426,7 @@ nil if not found."
(defun org-publish-get-plist-from-filename (filename) (defun org-publish-get-plist-from-filename (filename)
"Return publishing configuration plist for file FILENAME." "Return publishing configuration plist for file FILENAME."
(let ((found nil)) (let ((found nil))
(mapcar (mapc
(lambda (plist) (lambda (plist)
(let ((files (org-publish-get-base-files plist))) (let ((files (org-publish-get-base-files plist)))
(if (member (expand-file-name filename) files) (if (member (expand-file-name filename) files)
@ -464,9 +464,10 @@ FILENAME is the filename of the org file to be published."
PLIST is the property list for the given project. PLIST is the property list for the given project.
FILENAME is the filename of the file to be published." FILENAME is the filename of the file to be published."
;; make sure eshell/cp code is loaded ;; make sure eshell/cp code is loaded
(require 'eshell) (eval-and-compile
(require 'esh-maint) (require 'eshell)
(require 'em-unix) (require 'esh-maint)
(require 'em-unix))
(let ((destination (file-name-as-directory (plist-get plist :publishing-directory)))) (let ((destination (file-name-as-directory (plist-get plist :publishing-directory))))
(eshell/cp filename destination))) (eshell/cp filename destination)))

63
org.el
View File

@ -5,7 +5,7 @@
;; Author: Carsten Dominik <carsten at orgmode dot org> ;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp ;; Keywords: outlines, hypermedia, calendar, wp
;; Homepage: http://orgmode.org ;; Homepage: http://orgmode.org
;; Version: 5.13e ;; Version: 5.13g
;; ;;
;; This file is part of GNU Emacs. ;; This file is part of GNU Emacs.
;; ;;
@ -83,7 +83,7 @@
;;; Version ;;; Version
(defconst org-version "5.13e" (defconst org-version "5.13g"
"The version number of the file org.el.") "The version number of the file org.el.")
(defun org-version () (defun org-version ()
(interactive) (interactive)
@ -4307,6 +4307,8 @@ This is for getting out of special buffers like remember.")
(defvar texmathp-why) (defvar texmathp-why)
(defvar remember-save-after-remembering) (defvar remember-save-after-remembering)
(defvar remember-data-file) (defvar remember-data-file)
(defvar remember-register)
(defvar remember-buffer)
(defvar annotation) ; from remember.el, dynamically scoped in `remember-mode' (defvar annotation) ; from remember.el, dynamically scoped in `remember-mode'
(defvar initial) ; from remember.el, dynamically scoped in `remember-mode' (defvar initial) ; from remember.el, dynamically scoped in `remember-mode'
(defvar org-latex-regexps) (defvar org-latex-regexps)
@ -13410,7 +13412,8 @@ For calling through lisp, arg is also interpreted in the following way:
(if (looking-at outline-regexp) (goto-char (1- (match-end 0)))) (if (looking-at outline-regexp) (goto-char (1- (match-end 0))))
(or (looking-at (concat " +" org-todo-regexp " *")) (or (looking-at (concat " +" org-todo-regexp " *"))
(looking-at " *")) (looking-at " *"))
(let* ((startpos (line-beginning-position)) (let* ((match-data (match-data))
(startpos (line-beginning-position))
(logging (save-match-data (org-entry-get nil "LOGGING" t))) (logging (save-match-data (org-entry-get nil "LOGGING" t)))
(org-log-done (org-parse-local-options logging 'org-log-done)) (org-log-done (org-parse-local-options logging 'org-log-done))
(org-log-repeat (org-parse-local-options logging 'org-log-repeat)) (org-log-repeat (org-parse-local-options logging 'org-log-repeat))
@ -13494,6 +13497,7 @@ For calling through lisp, arg is also interpreted in the following way:
;; fail silently ;; fail silently
(message "TODO state change from %s to %s blocked" this state) (message "TODO state change from %s to %s blocked" this state)
(throw 'exit nil)))) (throw 'exit nil))))
(store-match-data match-data)
(replace-match next t t) (replace-match next t t)
(unless (pos-visible-in-window-p hl-pos) (unless (pos-visible-in-window-p hl-pos)
(message "TODO state changed to %s" (org-trim next))) (message "TODO state changed to %s" (org-trim next)))
@ -13586,7 +13590,7 @@ Returns the new TODO keyword, or nil if no state change should occur."
(set-buffer (get-buffer-create " *Org todo*")) (set-buffer (get-buffer-create " *Org todo*"))
; (delete-other-windows) ; (delete-other-windows)
; (split-window-vertically) ; (split-window-vertically)
(org-switch-to-buffer-other-window (get-buffer-create " *Org tags*"))) (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
(erase-buffer) (erase-buffer)
(org-set-local 'org-done-keywords done-keywords) (org-set-local 'org-done-keywords done-keywords)
(setq tbl fulltable cnt 0) (setq tbl fulltable cnt 0)
@ -15607,12 +15611,17 @@ Where possible, use the standard interface for changing this line."
org-columns-top-level-marker)) org-columns-top-level-marker))
key1 nval))) key1 nval)))
(defmacro org-no-warnings (&rest body)
(cons (if (fboundp 'with-no-warnings) 'with-no-warnings 'progn) body))
(defun org-columns-eval (form) (defun org-columns-eval (form)
(let (hidep) (let (hidep)
(save-excursion (save-excursion
(beginning-of-line 1) (beginning-of-line 1)
;; `next-line' is needed here, because it skips invisible line. ;; `next-line' is needed here, because it skips invisible line.
(condition-case nil (next-line 1) (error nil)) ;; FIXME: RMS says this should be wrapped into `with-no-warnings'
;; but I don't know how to do this and keep the code XEmacs compatible.
(condition-case nil (org-no-warnings (next-line 1)) (error nil))
(setq hidep (org-on-heading-p 1))) (setq hidep (org-on-heading-p 1)))
(eval form) (eval form)
(and hidep (hide-entry)))) (and hidep (hide-entry))))
@ -18356,15 +18365,15 @@ L Timeline for current buffer # List stuck projects (!=configure)
(format "set of %d commands" (length match))) (format "set of %d commands" (length match)))
(t "")))))) (t ""))))))
(when prefixes (when prefixes
(mapcar (lambda (x) (mapc (lambda (x)
(insert (insert
(format "\n%s %s" (format "\n%s %s"
(org-add-props (char-to-string x) (org-add-props (char-to-string x)
nil 'face 'bold) nil 'face 'bold)
(or (cdr (assoc (concat selstring (char-to-string x)) (or (cdr (assoc (concat selstring (char-to-string x))
prefix-descriptions)) prefix-descriptions))
"Prefix key")))) "Prefix key"))))
prefixes)) prefixes))
(goto-char (point-min)) (goto-char (point-min))
(when (fboundp 'fit-window-to-buffer) (when (fboundp 'fit-window-to-buffer)
(if second-time (if second-time
@ -19182,18 +19191,24 @@ When EMPTY is non-nil, also include days without any entries."
;;;###autoload ;;;###autoload
(defun org-agenda-list (&optional include-all start-day ndays) (defun org-agenda-list (&optional include-all start-day ndays)
"Produce a weekly view from all files in variable `org-agenda-files'. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
The view will be for the current week, but from the overview buffer you The view will be for the current day or week, but from the overview buffer
will be able to go to other weeks. you will be able to go to other days/weeks.
With one \\[universal-argument] prefix argument INCLUDE-ALL, all unfinished TODO items will
also be shown, under the current date. With one \\[universal-argument] prefix argument INCLUDE-ALL,
With two \\[universal-argument] prefix argument INCLUDE-ALL, all TODO entries marked DONE all unfinished TODO items will also be shown, before the agenda.
on the days are also shown. See the variable `org-log-done' for how This feature is considered obsolete, please use the TODO list or a block
to turn on logging. agenda instead.
With a numeric prefix argument in an interactive call, the agenda will
span INCLUDE-ALL days. Lisp programs should instead specify NDAYS to change
the number of days. NDAYS defaults to `org-agenda-ndays'.
START-DAY defaults to TODAY, or to the most recent match for the weekday START-DAY defaults to TODAY, or to the most recent match for the weekday
given in `org-agenda-start-on-weekday'. given in `org-agenda-start-on-weekday'."
NDAYS defaults to `org-agenda-ndays'."
(interactive "P") (interactive "P")
(if (and (integerp include-all) (> include-all 0))
(setq ndays include-all include-all nil))
(setq ndays (or ndays org-agenda-ndays) (setq ndays (or ndays org-agenda-ndays)
start-day (or start-day org-agenda-start-day)) start-day (or start-day org-agenda-start-day))
(if org-agenda-overriding-arguments (if org-agenda-overriding-arguments

BIN
org.pdf

Binary file not shown.

View File

@ -4315,6 +4315,7 @@ The following customization will tell @i{remember} to use org files as
target, and to create annotations compatible with Org-mode links. target, and to create annotations compatible with Org-mode links.
@example @example
(require 'remember)
(setq org-directory "~/path/to/my/orgfiles/") (setq org-directory "~/path/to/my/orgfiles/")
(setq org-default-notes-file (concat org-directory "/notes.org")) (setq org-default-notes-file (concat org-directory "/notes.org"))
(setq remember-annotation-functions '(org-remember-annotation)) (setq remember-annotation-functions '(org-remember-annotation))
@ -4632,10 +4633,12 @@ paper agenda, showing all the tasks for the current week or day.
@kindex C-c a a @kindex C-c a a
@item C-c a a @item C-c a a
Compile an agenda for the current week from a list of org files. The Compile an agenda for the current week from a list of org files. The
agenda shows the entries for each day. With a @kbd{C-u} prefix (or agenda shows the entries for each day. With a numeric
when the variable @code{org-agenda-include-all-todo} is @code{t}), all prefix@footnote{For backward compatibility, the universal prefix
unfinished TODO items (including those without a date) are also listed at @kbd{C-u} causes all TODO entries to be listed before the agenda. This
the beginning of the buffer, before the first date.@* feature is deprecated, use the dedicated TODO list, or a block agenda
instead.} (like @kbd{C-u 2 1 C-c a a}) you may set the number of days
to be displayed (see also the variable @code{org-agenda-ndays})
@end table @end table
Remote editing from the agenda buffer means, for example, that you can Remote editing from the agenda buffer means, for example, that you can

Binary file not shown.