about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--Src/Zle/zle_tricky.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 189581db3..9c88a4196 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2006-09-15  Peter Stephenson  <pws@csr.com>
 
+	* 22713: Src/Zle/zle_tricky.c: word end in math completion context
+	was screwy.
+
 	* 22710: README, Doc/Zsh/expn.yo, Src/prompt.c, Src/subst.c,
 	Src/utils.c: assume width 1 for control characters; don't
 	crash if width of repeated padding string is 0.
diff --git a/Src/Zle/zle_tricky.c b/Src/Zle/zle_tricky.c
index 0983bec31..89277a9e1 100644
--- a/Src/Zle/zle_tricky.c
+++ b/Src/Zle/zle_tricky.c
@@ -1426,7 +1426,7 @@ get_comp_string(void)
 	     * (even if they don't have a `$' in front of them).  So we *
 	     * have to find that name.                                  */
 	    char *cspos = zlemetaline + zlemetacs, *wptr, *cptr;
-	    we = itype_end(cspos, IIDENT, 0) - cspos;
+	    we = itype_end(cspos, IIDENT, 0) - zlemetaline;
 
 	    /*
 	     * With multibyte characters we need to go forwards,