X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=packages.lisp;h=51c0b1ae4e3d3dc7d89f3c6102cc083da09ae5e4;hb=526531efb3e0bde06de78dba4e381cc2a38b17ae;hp=8b497e4e56cd963228e4dcd517802a33c2fe47e2;hpb=f49e847742f3b30b1a911c2a2e59e1adb1c3cc2f;p=cl-readline.git diff --git a/packages.lisp b/packages.lisp index 8b497e4..51c0b1a 100644 --- a/packages.lisp +++ b/packages.lisp @@ -19,9 +19,6 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -(defpackage libreadline - (:use cl uffi)) - (defpackage readline (:nicknames rl) (:use cl uffi) @@ -30,11 +27,19 @@ add-history clear-completions readline - use-cl-complete + readexpr + use-package-complete use-custom-complete use-filename-complete + without-echo )) -(uffi:load-foreign-library "/usr/lib/cl-readline/libreadline-cl.so" - :module "readline-cl") +(uffi:load-foreign-library "/lib/libreadline.so.4" + :module "readline") + +(uffi:load-foreign-library "cl-readline.o" + :module "cl-readline") + +(uffi:load-foreign-library "cl-termios.o" + :module "cl-termios")