cl-who symbols autocompletion014 (4/13/2012 8:51:07 PM) comp.lang.lisp Hi. I have this at the beggining of my code: (defpackage test-x (:use :cl :hunchentoot :cl-who :parenscript)) (in-package test-x) I loaded those libraries with Quicklisp. Why I can autocomplete in Lispworks ... Haris
push415 (2/27/2012 12:09:19 AM) comp.lang.lisp Why I can't do this: (push \(:option lst) I want symbol (:option to be on the list ? Thanks ... Haris
macro #2225 (2/24/2012 1:31:36 PM) comp.lang.lisp Hi. I want to write a macro which returns code for cl-who: (defmacro select (&rest args) (dolist (arg args) `(:option ,arg)) to return for select 'a 'b 'c (:option a) (:option b) (:option c) bout it ... Haris
CLOS #3420 (1/12/2012 4:11:51 PM) comp.lang.lisp Hi. I am starting with CLOS. What is wrong with this piece of code: (defgeneric my-add ()) (defmethod my-add () (+ a 2)) (defclass abc () ((a :initform 5) (my-add))) (defparameter x (make-instance 'a... Haris
external function324 (12/29/2011 7:17:10 PM) comp.lang.lisp How can I make a function externa to a package so it can be called from outside a package ? Thanks ... Haris
require324 (12/29/2011 2:49:40 PM) comp.lang.lisp Hi. I loaded Hunchentoot with quicklisp and when I try (in Lispworks) (require 'hunchentoot) I get: Unknown module hunchentoot ? ... Haris
asdf #3124 (12/2/2011 4:28:36 PM) comp.lang.lisp Hi. I do the following: (load "c:/asdf.lisp") (push (directory "c:/asdf-libraries/") asdf:*central-registry*) (asdf:load-system :cl-who) and I get (in Lispworks): Illegal argument in functor position: and a... Haris
Space character316 (11/17/2011 6:11:03 PM) comp.lang.lisp How to insert space character in an array: (setf (aref ar 0) #\Space) inserts #\Space literally ? Thanks ... Haris
macros #2 #22649 (2/16/2010 9:11:50 PM) comp.lang.lisp I don't get the difference between defun and defmacro ? If code is data and data is code then macros are functions and functions are macros and everything is everything and then comes Monty Python's foot on t... fbogdanovic(89)
wxcl229 (3/13/2010 10:48:56 AM) comp.lang.lisp Hi. How to install wxcl ? I tried first installing asdf.lisp but I get an error has no external symbol with name "UID" Thanks. ... fbogdanovic(89)
emacs lisp file behaviour like repl1038 (3/12/2011 10:36:09 AM) comp.lang.lisp Hi. How to get the same emacs behaviour in *.lisp file like when in repl ? I mean the autocompletion and function arguments in minibuffer (after entering a function name) ? Thanks ... fbogdanovic(89)
cons cells15050 (3/30/2011 9:06:48 AM) comp.lang.lisp Hi. What are cons cells for ? Is that just used for internal representation of a list or it has some practical use for a programmer ? Thanks ... fbogdanovic(89)
ajax request627 (4/16/2011 1:45:28 PM) comp.lang.lisp Hi. How to perform an ajax request from javascript (parensctipt) to Hunchentoot web server ? Thanks ... fbogdanovic(89)
Msxml #2327 (4/19/2011 9:55:13 AM) comp.lang.javascript Hi. I downloaded the latest Msxml and when I try: var xhr = new ActiveXObject (Msxml2.XMLHTTP); I get the error: 'Msxml' is undefined. How do I correct that ? Thanks ... fbogdanovic(89)
first steps541 (9/23/2011 11:18:45 AM) comp.lang.prolog Hi. When I entuer in gnu prolog: man (adam). I get the following error: uncaught exception: error(syntax_error('user_input:1 (char:5) . or operator expected after expression'),read_term/3) That would be ente... fbogdanovic(89)
siblings547 (10/1/2011 11:27:46 AM) comp.lang.prolog Hi. I wrote a siblings example: father_child(tom, sally). father_child(tom, john). mother_child(merry, sally). siblings(X,Y) :- parent_child(Z,X), parent_child(Z,Y), parent_child(X,Y) :- ... fbogdanovic(89)
require324 (12/29/2011 2:49:40 PM) comp.lang.lisp Hi. I loaded Hunchentoot with quicklisp and when I try (in Lispworks) (require 'hunchentoot) I get: Unknown module hunchentoot ? ... fbogdanovic(89)