0
votes
1answer
45 views
how to override functions in emacs lisp for specific mode?
hi
How can I override emacs function with my own implementation for a specific mode?
example/reference would be great
Thanks
8
votes
4answers
211 views
What is so special about Lisp? [closed]
Possible Duplicate:
What’s so great about Lisp?
What is it that makes Lisp so special? Why is it repeatedly held up as an example of what a programming language should be?
I've …
8
votes
9answers
212 views
Lisp Parentheses
Why do Lispers format their code like shown in sample 1 instead of as shown in sample 2? To me (and I guess, to most others coming from different programming backgrounds than Lisp), the formatting …
5
votes
6answers
171 views
What are the prerequisites of reading ‘The Little Schemer’?
From the reviews 'The Little Schemer' looks like the book to learn functional programming techniques and theory/reasoning. I wanted to ask if this book requires me to learn basic Scheme first? or I …
3
votes
1answer
39 views
emacs interactive function with optional numeric prefix
hello
How do I specify a function which has optional numeric prefix, if not, it prompts for a number? basically how goto-line behaves?
(defun my-function(&optional n)
; I have tried
…
2
votes
2answers
54 views
emacs how to tell window orientation?
hi.
How do I tell in emacs window orientation, e.g. if it was created by vertical or horizontal split? alternatively, how can I tell if window can be resized vertically or horizontally?
on a related …
2
votes
1answer
58 views
emacs programmatically change window size
hi.
I would like to implement automatic collapse of compilation buffer to small size (but not close at a delete windows), such that upon successful compilation to window is shrunk to minimum size.
…
3
votes
2answers
58 views
Emacs/AUCTex: run command on file that is not currently open
I edit my LaTeX files in Emacs using AUCTeX. To compile, I press C-c C-c, which will run pdflatex root, if root.tex is the file in the current buffer.
But what if I want it to run pdflatex on a file …
3
votes
1answer
96 views
Is there an equivalent to Lisp’s “runtime” primitive in Scheme?
According to SICP section 1.2.6, exercise 1.22:
Most Lisp implementations include a primitive called runtime that returns an integer that specifies the amount of time the system has been running …
2
votes
1answer
45 views
lisp nth function does not work on cons-cell
How to use nth function in lisp if my my variable is combination of list and cons-cell
for eg:
(setq aa '(1 2) )
(nconc aa (+ 1 2))
this return me (1 2 . 3)
when i say (nth 1 aa) it returns 2
but …
4
votes
3answers
212 views
Is there a typical name for a function like ‘map’ that operates on a list of argument lists instead of multiple lists of arguments?
(I finally posted and accepted an answer to the effect of "no, there isn't, and the question isn't actually that general".)
Consider the Common Lisp function 'mapcar'. It takes a function and some …
1
vote
3answers
101 views
Lisp chaining functions macro
Is there a ready made lisp macro that allows chaining (piping) of functions? I couldn't find one. I'll try to explain what I mean with this example.
Instead of using let* with lots of unused …
17
votes
7answers
418 views
Why is the Lisp community so fragmented?
To begin, not only are there two main dialects of the language (Common Lisp and Scheme), but each of the dialects has many individual implementations. For example, Chicken Scheme, Bigloo, etc... each …
0
votes
1answer
27 views
How to ‘destroy/dispose’ frame% in plt-scheme?
I want to destory my previously shown frame when a certain event is triggered.
I can't find anything regarding this in the reference manual.
9
votes
11answers
393 views
Learning a Lisp variant? Suggestions?
I ultimately want to learn Clojure, but I've found learning resources for Clojure to be scarce for people of little experience...
I'm wondering if it would be beneficial to start with Scheme (read …
