]> code.delx.au - gnu-emacs-elpa/commitdiff
* adjust-parens.el (last-sexp-with-relative-depth): Fix function
authorBarry <gundaetiapo@gmail.com>
Tue, 29 Oct 2013 03:05:11 +0000 (23:05 -0400)
committerBarry <gundaetiapo@gmail.com>
Tue, 29 Oct 2013 03:05:11 +0000 (23:05 -0400)
documentation which indicated negative depth when positive is
correct.

packages/adjust-parens/adjust-parens.el

index 066dd0f096f81fb5ef754015f1256d29d1b80049..0ba2e6b0a4110a1559477ff3c9e74988789ee08f 100644 (file)
@@ -3,7 +3,7 @@
 ;; Copyright (C) 2013  Free Software Foundation, Inc.
 
 ;; Author: Barry O'Reilly <gundaetiapo@gmail.com>
-;; Version: 1.2
+;; Version: 1.3
 
 ;; This program is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
@@ -116,7 +116,7 @@ Examples:
   Evaluate: (last-sexp-with-relative-depth pos-a (1+ pos-j) 0)
   Returns:  position of j
 
-  Evaluate: (last-sexp-with-relative-depth pos-a (1+ pos-j) -1)
+  Evaluate: (last-sexp-with-relative-depth pos-a (1+ pos-j) 1)
   Returns:  position of (h i)
 
 This function assumes FROM-POS is not in a string or comment."