(org-archive-subtree): Quote variable name.
This commit is contained in:
parent
ed854aad0a
commit
fc24d8af4a
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
2007-02-27 Carsten Dominik <dominik@science.uva.nl>
|
||||
|
||||
* textmodes/org.el (org-archive-subtree): Quote variable name.
|
||||
|
||||
2007-02-26 Nick Roberts <nickrob@snap.net.nz>
|
||||
|
||||
* progmodes/gud.el (gud, gud-menu-map): Remove references to bash/bashdb.
|
||||
|
|
|
@ -5528,9 +5528,10 @@ this heading. "
|
|||
(org-done-string tr-org-done-string)
|
||||
(org-todo-regexp tr-org-todo-regexp)
|
||||
(org-todo-line-regexp tr-org-todo-line-regexp)
|
||||
(org-odd-levels-only (if (local-variable-p org-odd-levels-only)
|
||||
org-odd-levels-only
|
||||
tr-org-odd-levels-only)))
|
||||
(org-odd-levels-only
|
||||
(if (local-variable-p 'org-odd-levels-only)
|
||||
org-odd-levels-only
|
||||
tr-org-odd-levels-only)))
|
||||
(goto-char (point-min))
|
||||
(if heading
|
||||
(progn
|
||||
|
|
Loading…
Add table
Reference in a new issue