diff options
| author | Taylor R Campbell <campbell@mumble.net> | 2009-07-08 19:40:39 +0000 | 
|---|---|---|
| committer | Taylor R Campbell <campbell@mumble.net> | 2009-07-08 19:40:39 +0000 | 
| commit | 446316e7c2d9de0ce050f97b1ef0b623192d6f7c (patch) | |
| tree | 4c530e4d3433e9ae782fe37713e67eb6dd7e9e00 | |
| parent | 41a0a344acf992ae9570185d9b39b87161fadd17 (diff) | |
Ignore errors while indenting after inserting a comment.
This fixes an error after applying M-; to `(foo |)'.
darcs-hash:20090708194039-00fcc-0f608f8e09edabce65c5b45d5d8c86ef24bb8dcd
| -rw-r--r-- | paredit.el | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -1082,7 +1082,7 @@ This is expected to be called only in `paredit-comment-dwim'; do not                 (save-excursion                   (newline)                   (lisp-indent-line) -                 (indent-sexp)))) +                 (paredit-ignore-sexp-errors (indent-sexp)))))            (t             ;; Margin comment             (indent-to comment-column 1) ; 1 -> force one leading space | 
