summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2014-07-28 17:28:54 +0200
committerBastien Guerry <bzg@altern.org>2014-07-28 17:28:54 +0200
commite8b51c0ce5d6dbd5f2c6cfff2d260a3f5f7ac58f (patch)
tree3721f8e47ea43496febe8e9ff3348d505292006b
parent5512bedee6d48a0a2bc4250cc945d404ee94d159 (diff)
downloadorg-mode-e8b51c0ce5d6dbd5f2c6cfff2d260a3f5f7ac58f.tar.gz
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.
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 249f1c3..a153151 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))