mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-01 19:41:00 +02:00
22713: word end in math completion context was screwy
This commit is contained in:
parent
bb3628e898
commit
0d4a9f65f7
2 changed files with 4 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue