]> git.eshelyaron.com Git - emacs.git/commitdiff
* org.el (org-agenda-skip-unavailable-files):
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 2 Jul 2008 13:27:18 +0000 (13:27 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 2 Jul 2008 13:27:18 +0000 (13:27 +0000)
* org-clock.el (org-clock-out-when-done): Doc fixes.

lisp/org/ChangeLog
lisp/org/org-clock.el
lisp/org/org.el

index 0f113854f2eb88fc25af3289fad8ed3a9c6a9b80..a7f3852404c48727aa45268ade0de8bf359042d2 100644 (file)
@@ -1,3 +1,8 @@
+2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
+
+       * org.el (org-agenda-skip-unavailable-files):
+       * org-clock.el (org-clock-out-when-done): Doc fixes.
+
 2008-06-18  Glenn Morris  <rgm@gnu.org>
 
        * org.el (org-map-entries): Let-bind `file'.
@@ -21,7 +26,7 @@
        (org-read-date): Respect `org-overriding-default-time'.
 
        * org-remember.el (org-remember-apply-template): Respect the
-       ovverriding default time.
+       overriding default time.
 
        * org-agenda.el (org-agenda-action-marker): New variable.
        (org-agenda-action): New command.
index 99be3907cd7a32f4199084274eaa52a1ebacb878..44d8840482ae37c6778b717c924b469376786629 100644 (file)
@@ -55,7 +55,7 @@ reaches or exceeds this number, a drawer will be created."
 
 (defcustom org-clock-out-when-done t
   "When t, the clock will be stopped when the relevant entry is marked DONE.
-Nil means, clock will keep running until stopped explicitly with
+When nil, clock will keep running until stopped explicitly with
 `C-c C-x C-o', or until the clock is started in a different item."
   :group 'org-clock
   :type 'boolean)
@@ -136,7 +136,7 @@ of a different task.")
   "Select a task that recently was associated with clocking."
   (interactive)
   (let (sel-list rpl file task (i 0) s)
-    (save-window-excursion 
+    (save-window-excursion
       (org-switch-to-buffer-other-window
        (get-buffer-create "*Clock Task Select*"))
       (erase-buffer)
@@ -190,7 +190,7 @@ of a different task.")
       (when (and cat task)
        (insert (format "[%c] %-15s %s\n" i cat task))
        (cons i marker)))))
-  
+
 (defun org-update-mode-line ()
   (let* ((delta (- (time-to-seconds (current-time))
                    (time-to-seconds org-clock-start-time)))
@@ -226,13 +226,13 @@ the clocking selection, associated with the letter `d'."
                   (marker-position org-clock-marker)
                   (marker-buffer org-clock-marker))
       (org-clock-out t))
-    
+
     (when (equal select '(16))
       ;; Mark as default clocking task
       (save-excursion
        (org-back-to-heading t)
        (move-marker org-clock-default-task (point))))
-    
+
     (setq target-pos (point))  ;; we want to clock in at this location
     (save-excursion
       (when (and selected-task (marker-buffer selected-task))
@@ -261,7 +261,7 @@ the clocking selection, associated with the letter `d'."
              (setq org-clock-heading "???")))
          (setq org-clock-heading (propertize org-clock-heading 'face nil))
          (org-clock-find-position)
-         
+
          (insert "\n") (backward-char 1)
          (indent-relative)
          (insert org-clock-string " ")
@@ -735,9 +735,9 @@ the currently selected interval size."
           (ins (make-marker))
           (total-time nil)
           (scope (plist-get params :scope))
-          (tostring (plist-get  params :tostring))
-          (multifile (plist-get  params :multifile))
-          (header (plist-get  params :header))
+          (tostring (plist-get params :tostring))
+          (multifile (plist-get params :multifile))
+          (header (plist-get params :header))
           (maxlevel (or (plist-get params :maxlevel) 3))
           (step (plist-get params :step))
           (emph (plist-get params :emphasize))
index 7a63ad74cfbd1ce7f3ed58b7df0c6ae30125e4f1..3186185259ee002b99c6d2a74a78369b0b09ff7a 100644 (file)
@@ -1987,8 +1987,8 @@ scope."
       'org-agenda-text-search-extra-files))
 
 (defcustom org-agenda-skip-unavailable-files nil
-  "t means to just skip non-reachable files in `org-agenda-files'.
-Nil means to remove them, after a query, from the list."
+  "Non-nil means to just skip non-reachable files in `org-agenda-files'.
+A nil value means to remove them, after a query, from the list."
   :group 'org-agenda
   :type 'boolean)