diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-10-12 16:39:20 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-10-12 16:39:20 +0000 |
commit | 70f1b1827a787d215c8f722f1ee35fa14d2bea84 (patch) | |
tree | 361bb79c2b5a7199e0f8b418d2172966269b3e85 /lisp/expand.el | |
parent | 2cb95d1b7b290372418a3e8c9027de4be2e5d50e (diff) | |
download | emacs-70f1b1827a787d215c8f722f1ee35fa14d2bea84.tar.gz |
(expand-c-for-skeleton): Add explicit terminating \n.
Diffstat (limited to 'lisp/expand.el')
-rw-r--r-- | lisp/expand.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/expand.el b/lisp/expand.el index 0e700c1d2a4..4c1daa430ea 100644 --- a/lisp/expand.el +++ b/lisp/expand.el @@ -100,8 +100,7 @@ "Loop var: " "for(" str _ @ "=0; " str @ "; " str @ ") {" \n @ _ \n - "}" > - ) + "}" > \n) (defconst expand-c-sample-expand-list '(("if" "if () {\n \n} else {\n \n}" (5 10 21)) |