Merge branch 'maint' of orgmode.org:org-mode into maint
This commit is contained in:
commit
9488d13094
|
@ -3076,10 +3076,12 @@ for this list."
|
||||||
(catch 'exit
|
(catch 'exit
|
||||||
(unless (org-at-item-p) (error "Not at a list item"))
|
(unless (org-at-item-p) (error "Not at a list item"))
|
||||||
(save-excursion
|
(save-excursion
|
||||||
(re-search-backward "#\\+ORGLST" nil t)
|
(let ((case-fold-search t))
|
||||||
(unless (looking-at "\\(?:[ \t]\\)?#\\+ORGLST:[ \t]+SEND[ \t]+\\(\\S-+\\)[ \t]+\\(\\S-+\\)")
|
(re-search-backward "^[ \t]*#\\+ORGLST:" nil t)
|
||||||
(if maybe (throw 'exit nil)
|
(unless (looking-at
|
||||||
(error "Don't know how to transform this list"))))
|
"[ \t]*#\\+ORGLST:[ \t]+SEND[ \t]+\\(\\S-+\\)[ \t]+\\([^ \t\n]+\\)")
|
||||||
|
(if maybe (throw 'exit nil)
|
||||||
|
(error "Don't know how to transform this list")))))
|
||||||
(let* ((name (match-string 1))
|
(let* ((name (match-string 1))
|
||||||
(transform (intern (match-string 2)))
|
(transform (intern (match-string 2)))
|
||||||
(bottom-point
|
(bottom-point
|
||||||
|
|
|
@ -4402,7 +4402,7 @@ to execute outside of tables."
|
||||||
[(shift tab)] [(tab)] "\C-i"))
|
[(shift tab)] [(tab)] "\C-i"))
|
||||||
(org-defkey orgtbl-mode-map [backspace]
|
(org-defkey orgtbl-mode-map [backspace]
|
||||||
(orgtbl-make-binding 'org-delete-backward-char 109
|
(orgtbl-make-binding 'org-delete-backward-char 109
|
||||||
[backspace] [(del)]))
|
[backspace] (kbd "DEL")))
|
||||||
|
|
||||||
(unless (featurep 'xemacs)
|
(unless (featurep 'xemacs)
|
||||||
(org-defkey orgtbl-mode-map [S-iso-lefttab]
|
(org-defkey orgtbl-mode-map [S-iso-lefttab]
|
||||||
|
|
Loading…
Reference in New Issue