From f311921ad3de79f318823854d74adbc0e61c42f3 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 23 May 2016 01:12:51 +0200 Subject: [PATCH 1/2] org-list: Fix `org-list-send-list' in LaTeX buffers * lisp/org-list.el (org-list-send-list): Find correct translator. Reported-by: Charles Millar --- lisp/org-list.el | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lisp/org-list.el b/lisp/org-list.el index 9dbdc9718..22d42a7ae 100644 --- a/lisp/org-list.el +++ b/lisp/org-list.el @@ -3076,10 +3076,12 @@ for this list." (catch 'exit (unless (org-at-item-p) (error "Not at a list item")) (save-excursion - (re-search-backward "#\\+ORGLST" nil t) - (unless (looking-at "\\(?:[ \t]\\)?#\\+ORGLST:[ \t]+SEND[ \t]+\\(\\S-+\\)[ \t]+\\(\\S-+\\)") - (if maybe (throw 'exit nil) - (error "Don't know how to transform this list")))) + (let ((case-fold-search t)) + (re-search-backward "^[ \t]*#\\+ORGLST:" nil t) + (unless (looking-at + "[ \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)) (transform (intern (match-string 2))) (bottom-point From 6105643903b5933508f5aa296663136ec2e7ba4b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 23 May 2016 01:19:29 +0200 Subject: [PATCH 2/2] org-table: Fix 4914f89 * lisp/org-table.el (orgtbl-setup): Fix improper key binding specification. Reported-by: Alex --- lisp/org-table.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-table.el b/lisp/org-table.el index 433b4ed09..c57eb5d33 100644 --- a/lisp/org-table.el +++ b/lisp/org-table.el @@ -4402,7 +4402,7 @@ to execute outside of tables." [(shift tab)] [(tab)] "\C-i")) (org-defkey orgtbl-mode-map [backspace] (orgtbl-make-binding 'org-delete-backward-char 109 - [backspace] [(del)])) + [backspace] (kbd "DEL"))) (unless (featurep 'xemacs) (org-defkey orgtbl-mode-map [S-iso-lefttab]