diff options
Diffstat (limited to 'Src/Zle/zle_main.c')
-rw-r--r-- | Src/Zle/zle_main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Src/Zle/zle_main.c b/Src/Zle/zle_main.c index 091012d17..1333e5f75 100644 --- a/Src/Zle/zle_main.c +++ b/Src/Zle/zle_main.c @@ -137,7 +137,7 @@ mod_export Widget compwidget; /* the status line, and its length */ /**/ -mod_export char *statusline; +mod_export ZLE_STRING_T statusline; /**/ mod_export int statusll; @@ -1374,8 +1374,8 @@ describekeybriefly(UNUSED(char **args)) if (statusline) return 1; clearlist = 1; - statusline = "Describe key briefly: _"; - statusll = strlen(statusline); + statusline = ZWS("Describe key briefly: _"); + statusll = ZS_strlen(statusline); zrefresh(); seq = getkeymapcmd(curkeymap, &func, &str); statusline = NULL; |