branch: elpa/paredit
commit c33e13425343e2f87f37ece5acb9e2530b5a625a
Author: Taylor R Campbell <[email protected]>
Commit: Taylor R Campbell <[email protected]>
Fix reference to `backward-down-list', which is no more.
(Why doesn't GNU Emacs include this? Grmble.)
---
paredit.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/paredit.el b/paredit.el
index aa449f6..3a04ca3 100644
--- a/paredit.el
+++ b/paredit.el
@@ -2521,7 +2521,7 @@ Both must be lists, strings, or atoms; error if there is
a mismatch."
(interactive)
(paredit-lose-if-not-in-sexp 'paredit-add-to-previous-list)
(save-excursion
- (backward-down-list)
+ (down-list -1) ;++ backward-down-list...
(paredit-forward-slurp-sexp)))
(defun paredit-add-to-next-list ()