diff options
author | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2009-02-08 03:28:15 +0000 |
---|---|---|
committer | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2009-02-08 03:28:15 +0000 |
commit | 8563c2ad7ce0066128f21b1ee9c9b7b180153e27 (patch) | |
tree | 7885c61cc0ee5d25b0c3ce5948594a1ba6cba45f /editors | |
parent | d8d2cf17f92ccd5d80f2d631612145be2efe8210 (diff) |
Notes
Diffstat (limited to 'editors')
-rw-r--r-- | editors/lpe/files/patch-src__cfg.c | 11 | ||||
-rw-r--r-- | editors/lpe/files/patch-src__input.c | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/editors/lpe/files/patch-src__cfg.c b/editors/lpe/files/patch-src__cfg.c new file mode 100644 index 000000000000..2c8cee23cf20 --- /dev/null +++ b/editors/lpe/files/patch-src__cfg.c @@ -0,0 +1,11 @@ +--- ./src/cfg.c.orig 2008-08-08 07:51:20.000000000 +0000 ++++ ./src/cfg.c 2008-08-08 07:52:05.000000000 +0000 +@@ -37,7 +37,7 @@ + if (SLang_load_file (DATADIR "/lpe/init.sl") == -1) + { + SLang_restart (1); +- SLang_Error = 0; ++ SLang_set_error(0); + } + } + } diff --git a/editors/lpe/files/patch-src__input.c b/editors/lpe/files/patch-src__input.c new file mode 100644 index 000000000000..2abf02d18724 --- /dev/null +++ b/editors/lpe/files/patch-src__input.c @@ -0,0 +1,11 @@ +--- ./src/input.c.orig 2008-08-08 07:51:24.000000000 +0000 ++++ ./src/input.c 2008-08-08 07:51:48.000000000 +0000 +@@ -2262,7 +2262,7 @@ + SLang_load_string (cmd); + /* to avoid slang stack overflows... */ + SLang_restart (1); +- SLang_Error = 0; ++ SLang_set_error(0); + + /* + * This is not the nicest thing to do, but certain slang commnds, |