1
1
Wed May 20 16:27:56 1998  Norbert Warmuth  <k3190@fh-sw.de>

* widget.c (history_put): input line history was defunct because
there was an #ifndef where an #ifdef should be.
Btw. PORT_WIDGET_WANTS_HISTORY seems incomplete because a lot of
history code is included even when this define is undefined.
Этот коммит содержится в:
Norbert Warmuth 1998-05-20 14:49:12 +00:00
родитель 9f5523e4e9
Коммит fced018e54
2 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,10 @@
Wed May 20 16:27:56 1998 Norbert Warmuth <k3190@fh-sw.de>
* widget.c (history_put): input line history was defunct because
there was an #ifndef where an #ifdef should be.
Btw. PORT_WIDGET_WANTS_HISTORY seems incomplete because a lot of
history code is included even when this define is undefined.
1998-05-19 Tamasi Gyorgy <gt_cosy@usa.net>
* src/*: Until I get a better ChangeLog: Tamasi's port of the

Просмотреть файл

@ -936,7 +936,7 @@ Hist *history_get (char *input_name)
return new; /* return pointer to last entry in list */
}
#ifndef PORT_WIDGET_WANTS_HISTORY
#ifdef PORT_WIDGET_WANTS_HISTORY
void history_put (char *input_name, Hist *h)
{
int i;