1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(org-set-regexps-and-options): Use `org-remove-keyword-keys'.

(org-remove-keyword-keys): New function.
This commit is contained in:
Carsten Dominik 2007-08-30 13:56:28 +00:00
parent 82a93b22c7
commit a2ac8d7658

View file

@ -5,7 +5,7 @@
;; Author: Carsten Dominik <dominik at science dot uva dot nl>
;; Keywords: outlines, hypermedia, calendar, wp
;; Homepage: http://www.astro.uva.nl/~dominik/Tools/org/
;; Version: 5.07
;; Version: 5.08
;;
;; This file is part of GNU Emacs.
;;
@ -3827,7 +3827,7 @@ means to push this value onto the list in the variable.")
kws0)
kwsa (if kwsa (append '((:startgroup)) kwsa '((:endgroup))))
hw (car kws1)
dws (if sep (cdr sep) (last kws1))
dws (if sep (org-remove-keyword-keys (cdr sep)) (last kws1))
tail (list inter hw (car dws) (org-last dws)))
(add-to-list 'org-todo-heads hw 'append)
(push kws1 org-todo-sets)
@ -3936,6 +3936,12 @@ means to push this value onto the list in the variable.")
(org-set-font-lock-defaults)))
(defun org-remove-keyword-keys (list)
(mapcar (lambda (x)
(if (string-match "(.)$" x)
(substring x 0 (match-beginning 0))
x))
list))
;;; Some variables ujsed in various places