Mercurial > hg > xemacs-beta
annotate lib-src/emacs.csh @ 5619:75ad4969a16d
Replace the 'flush face property with the opposite 'shrink one.
lisp/ChangeLog addition:
2011-12-26 Didier Verna <didier@xemacs.org>
* cl-macs.el (face-flush-p): Removed.
* cl-macs.el (face-shrink-p): New.
* faces.el (face-flush-p): Removed.
* faces.el (face-shrink-p): New.
* faces.el (set-face-flush-p): Removed.
* faces.el (set-face-shrink-p): New.
* cus-face.el (custom-face-attributes):
* faces.el (set-face-property):
* faces.el (face-equal):
* x-faces.el (x-init-face-from-resources):
* x-faces.el (make-face-x-resource-internal): Replace the 'flush
property with the opposite 'shrink one.
src/ChangeLog addition:
2011-12-26 Didier Verna <didier@xemacs.org>
* lisp.h:
* faces.c (mark_face):
* faces.c (face_equal):
* faces.c (face_getprop):
* faces.c (face_putprop):
* faces.c (face_remprop):
* faces.c (face_plist):
* faces.c (reset_face):
* faces.c (update_face_inheritance_mapper):
* faces.c (Fmake_face):
* faces.c (update_face_cachel_data):
* faces.c (merge_face_cachel_data):
* faces.c (Fcopy_face):
* faces.c (syms_of_faces):
* faces.c (vars_of_faces):
* faces.c (complex_vars_of_faces):
* faces.h (struct Lisp_Face):
* faces.h (struct face_cachel):
* faces.h (WINDOW_FACE_CACHEL_SHRINK_P):
* faces.h (FACE_SHRINK_P):
* fontcolor.c (face_boolean_validate): Replace the 'flush property
with the opposite 'shrink one.
* redisplay.c (create_text_block):
* redisplay.c (create_string_text_block): Ditto. Invert the logic
for storing a new clear_findex in the display lines.
author | Didier Verna <didier@xemacs.org> |
---|---|
date | Mon, 26 Dec 2011 15:04:25 +0100 |
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 |