From e8b51c0ce5d6dbd5f2c6cfff2d260a3f5f7ac58f Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Mon, 28 Jul 2014 17:28:54 +0200 Subject: [PATCH] org.el (org-self-insert-command): Use `yas-expand' * org.el (org-self-insert-command): Use `yas-expand' as yas/expand is obsolete since Yasnippet 0.8. Thanks to Craig Tanis for reporting this. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 249f1c325..a15315187 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -19685,7 +19685,7 @@ overwritten, and the table is not marked as requiring realignment." ;; check if we blank the field, and if that triggers align (and (featurep 'org-table) org-table-auto-blank-field (member last-command - '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c yas/expand)) + '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c yas-expand)) (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |")) ;; got extra space, this field does not determine column width (let (org-table-may-need-update) (org-table-blank-field))