about summary refs log tree commit diff
path: root/Src/zsh.h
diff options
context:
space:
mode:
authorWayne Davison <wayned@users.sourceforge.net>2005-11-15 08:44:21 +0000
committerWayne Davison <wayned@users.sourceforge.net>2005-11-15 08:44:21 +0000
commitd8838293f533a6cab5902611fe72bc5d21bb16fa (patch)
tree390fa518b23dec0fda5f7658afaca27b35f0ebb3 /Src/zsh.h
parente79af955f0620a699b01f11b584788404ba81767 (diff)
downloadzsh-d8838293f533a6cab5902611fe72bc5d21bb16fa.tar.gz
zsh-d8838293f533a6cab5902611fe72bc5d21bb16fa.tar.xz
zsh-d8838293f533a6cab5902611fe72bc5d21bb16fa.zip
Changed two zle functions to each return a char pointer, not an
unsigned char pointer.
Diffstat (limited to 'Src/zsh.h')
-rw-r--r--Src/zsh.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/zsh.h b/Src/zsh.h
index 2888ec5a9..26d645203 100644
--- a/Src/zsh.h
+++ b/Src/zsh.h
@@ -1918,8 +1918,8 @@ typedef int (*CompctlReadFn) _((char *, char **, Options, char *));
 
 typedef void (*ZleVoidFn) _((void));
 typedef void (*ZleVoidIntFn) _((int));
-typedef unsigned char *(*ZleReadFn) _((char **, char **, int, int));
-typedef unsigned char *(*ZleGetLineFn) _((int *, int *));
+typedef char *(*ZleReadFn) _((char **, char **, int, int));
+typedef char *(*ZleGetLineFn) _((int *, int *));
 
 /***************************************/
 /* Hooks in core.                      */