Mercurial > vim
comparison src/normal.c @ 2112:6b5d641bcdd4 v7.2.395
updated for version 7.2.395
Problem: In help CTRL=] on g?g? escapes the ?, causing it to fail. (Tony
Mechelynck)
Solution: Don't escape ? for a help command. (Sergey Khorev)
author | Bram Moolenaar <bram@zimbu.org> |
---|---|
date | Wed, 17 Mar 2010 13:07:08 +0100 |
parents | 23d366df1938 |
children | 279380a812ad |
comparison
equal
deleted
inserted
replaced
2111:aab202d244b6 | 2112:6b5d641bcdd4 |
---|---|
5524 #endif | 5524 #endif |
5525 STRCPY(buf, "ts "); | 5525 STRCPY(buf, "ts "); |
5526 break; | 5526 break; |
5527 | 5527 |
5528 default: | 5528 default: |
5529 tag_cmd = TRUE; | |
5529 if (curbuf->b_help) | 5530 if (curbuf->b_help) |
5530 STRCPY(buf, "he! "); | 5531 STRCPY(buf, "he! "); |
5531 else | 5532 else |
5532 { | 5533 { |
5533 tag_cmd = TRUE; | |
5534 if (g_cmd) | 5534 if (g_cmd) |
5535 STRCPY(buf, "tj "); | 5535 STRCPY(buf, "tj "); |
5536 else | 5536 else |
5537 sprintf((char *)buf, "%ldta ", cap->count0); | 5537 sprintf((char *)buf, "%ldta ", cap->count0); |
5538 } | 5538 } |