summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2009-05-30 06:59:46 +0200
committerCarsten Dominik <carsten.dominik@gmail.com>2009-05-30 06:59:46 +0200
commit0b5dcee06d1d9afb94b0b9b8498ee98f4b80f27b (patch)
tree6d28166a847eaff58989bd7f0e06f17683397624
parent76979e62bd08a1314c25e24b70b20962598e801d (diff)
downloadorg-mode-0b5dcee06d1d9afb94b0b9b8498ee98f4b80f27b.tar.gz
Minor fixes
-rw-r--r--doc/org.texi2
-rw-r--r--lisp/org-publish.el2
-rw-r--r--lisp/org.el2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/org.texi b/doc/org.texi
index 61c0210..270661e 100644
--- a/doc/org.texi
+++ b/doc/org.texi
@@ -2142,7 +2142,7 @@ A formula can contain an optional mode string after a semicolon. This
string consists of flags to influence Calc and other modes during
execution. By default, Org uses the standard Calc modes (precision
12, angular units degrees, fraction and symbolic modes off). The display
-format, however, has been changed to @code{(float 5)} to keep tables
+format, however, has been changed to @code{(float 8)} to keep tables
compact. The default settings can be configured using the variable
@code{org-calc-default-modes}.
diff --git a/lisp/org-publish.el b/lisp/org-publish.el
index 53a6e02..7245119 100644
--- a/lisp/org-publish.el
+++ b/lisp/org-publish.el
@@ -233,7 +233,7 @@ If there is no timestamp, create one."
(if (and (fboundp 'set-file-times)
(not newly-created-timestamp))
(set-file-times timestamp-file)
- (call-process "touch" nil 0 nil timestamp-file))))
+ (call-process "touch" nil 0 nil (expand-file-name timestamp-file)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Mapping files to project names
diff --git a/lisp/org.el b/lisp/org.el
index 877ea99..97ac00c 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -9887,7 +9887,7 @@ This function is run automatically after each state change to a DONE state."
"Make a compact tree which shows all headlines marked with TODO.
The tree will show the lines where the regexp matches, and all higher
headlines above the match.
-With a \\[universal-argument] prefix, also show the DONE entries.
+With a \\[universal-argument] prefix, prompt for a regexp to match.
With a numeric prefix N, construct a sparse tree for the Nth element
of `org-todo-keywords-1'."
(interactive "P")