aboutsummaryrefslogtreecommitdiffstats
path: root/editline
diff options
context:
space:
mode:
Diffstat (limited to 'editline')
-rwxr-xr-xeditline/histedit.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/editline/histedit.h b/editline/histedit.h
index 28b01944b..e387e3b81 100755
--- a/editline/histedit.h
+++ b/editline/histedit.h
@@ -59,9 +59,9 @@ typedef struct editline EditLine;
* For user-defined function interface
*/
typedef struct lineinfo {
- const char *buffer;
- const char *cursor;
- const char *lastchar;
+ char *buffer;
+ char *cursor;
+ char *lastchar;
} LineInfo;