mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
86b6c6a9c5
PR: 10481 Submitted by: Kouichi Hirabayashi <kh@mogami-wire.co.jp>
38 lines
905 B
Plaintext
38 lines
905 B
Plaintext
diff -cr spice3f4/src/lib/fte/misccoms.c src/lib/fte/misccoms.c
|
|
*** spice3f4/src/lib/fte/misccoms.c Thu Jun 17 17:32:53 1993
|
|
--- src/lib/fte/misccoms.c Tue Nov 4 22:18:54 1997
|
|
***************
|
|
*** 11,16 ****
|
|
--- 11,24 ----
|
|
#include "hlpdefs.h"
|
|
#include "suffix.h"
|
|
|
|
+ #ifdef HAS_GNUREADLINE
|
|
+ #include <readline/readline.h>
|
|
+ #include <readline/history.h>
|
|
+
|
|
+ extern int gnu_history_lines;
|
|
+ extern char gnu_history_file[];
|
|
+ #endif
|
|
+
|
|
static void byemesg();
|
|
|
|
void
|
|
***************
|
|
*** 299,304 ****
|
|
--- 307,320 ----
|
|
byemesg();
|
|
} else
|
|
byemesg();
|
|
+
|
|
+ #ifdef HAS_GNUREADLINE
|
|
+ /* Added GNU Readline Support -- Andrew Veliath <veliaa@rpi.edu> */
|
|
+ if (cp_interactive && (cp_maxhistlength > 0)) {
|
|
+ stifle_history(cp_maxhistlength);
|
|
+ write_history(gnu_history_file);
|
|
+ }
|
|
+ #endif /* HAS_GNUREADLINE */
|
|
|
|
exit(EXIT_NORMAL);
|
|
/* NOTREACHED */
|