Mercurial > hg > xemacs-beta
annotate lib-src/emacs.csh @ 5772:cd4f5f1f1f4c
Add #'write-sequence, on the model of #'write-char, API from Common Lisp.
src/ChangeLog addition:
2013-12-17 Aidan Kehoe <kehoea@parhasard.net>
* lisp.h:
* lisp.h (PARSE_KEYWORDS_8):
Correct this in cases where we can have noticeably fewer arguments
than KEYWORDS_OFFSET, check whether nargs > pk_offset.
Declare check_sequence_range in this header.
* print.c:
* print.c (Fwrite_sequence) New:
Write a sequence to a stream, in the same way #'write-char and
#'terpri do. API from Common Lisp, not GNU, so while there is some
char-int confoundance, it's more limited than usual with GNU APIs.
* print.c (syms_of_print):
Make it available.
* sequence.c (check_sequence_range):
Export this to other files.
lisp/ChangeLog addition:
2013-12-17 Aidan Kehoe <kehoea@parhasard.net>
* cl-extra.el:
* cl-extra.el (write-string): New.
* cl-extra.el (write-line): New.
Add these here, implemented in terms of #'write-sequence in print.c.
tests/ChangeLog addition:
2013-12-17 Aidan Kehoe <kehoea@parhasard.net>
* automated/lisp-tests.el:
Up max-lisp-eval-depth when compiling this file, some of what
we're doing in testing #'write-sequence is demanding.
* automated/lisp-tests.el (make-circular-list):
New argument VALUE, the car of the conses to create.
* automated/lisp-tests.el:
Test #'write-sequence, #'write-string, #'write-line with function,
buffer and marker STREAMs; test argument types, keyword argument
ranges and values.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Tue, 17 Dec 2013 19:29:10 +0200 (2013-12-17) |
parents | 06dd936cde16 |
children |
rev | line source |
---|---|
5491 | 1 ### emacs.csh |
2 | |
3 ## Add legal notice if non-trivial amounts of code are added. | |
4 | |
5 ## Author: Michael DeCorte | |
6 | |
7 ### Commentary: | |
8 | |
9 # Synced up with: GNU 23.1.92. | |
10 # Synced by: Ben Wing, 2-17-10. | |
0 | 11 |
5491 | 12 ## This file is obsolete. Use emacsclient -a instead. |
13 | |
14 ## This defines a csh command named `edit' which resumes an | |
15 ## existing Emacs or starts a new one if none exists. | |
16 ## One way or another, any arguments are passed to Emacs to specify files | |
17 ## (provided you have loaded `resume.el'). | |
18 | |
19 ## These are the possible values of $whichjob | |
20 ## 1 = new ordinary emacs (the -nw is so that it doesn't try to do X) | |
21 ## 2 = resume emacs | |
22 ## 3 = new emacs under X (-i is so that you get a reasonable icon) | |
23 ## 4 = resume emacs under X | |
0 | 24 set EMACS_PATTERN="^\[[0-9]\] . Stopped ............ $EMACS" |
25 | |
26 alias edit 'set emacs_command=("emacs -nw \!*" "fg %emacs" "emacs -i \!* &"\ | |
27 "emacsclient \!* &") ; \ | |
28 jobs >! $HOME/.jobs; grep "$EMACS_PATTERN" < $HOME/.jobs >& /dev/null; \ | |
29 @ isjob = ! $status; \ | |
30 @ whichjob = 1 + $isjob + $?DISPLAY * 2 + $?WINDOW_PARENT * 4; \ | |
31 test -S ~/.emacs_server && emacsclient \!* \ | |
32 || echo `pwd` \!* >! ~/.emacs_args && eval $emacs_command[$whichjob]' | |
5491 | 33 |
34 # arch-tag: 433d58df-15b9-446f-ad37-f0393e3a23d4 |