Changeset e9b1f60
- Timestamp:
- Apr 20, 2003, 10:34:06 AM (20 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- d54838d
- Parents:
- ecd5dc5
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
recd5dc5 re9b1f60 42 42 added the 'term' command which takes the 'raise' and 'deiconify' 43 43 options. It assumes xterm for now. 44 only 'make distclean' will nuke core and ~ files now 44 45 45 46 1.2.8 -
Makefile.in
rd0d65df re9b1f60 27 27 28 28 clean: 29 $(RM) *~ *.o owl tester core$(AUTOGEN) owl_prototypes.h.new29 $(RM) owl tester *.o $(AUTOGEN) owl_prototypes.h.new 30 30 31 31 distclean: clean 32 $(RM) config.cache config.log config.status Makefile config.h TAGS 32 $(RM) config.cache config.log config.status Makefile config.h TAGS *~ core 33 33 34 34 proto: owl_prototypes.h -
functions.c
recd5dc5 re9b1f60 2632 2632 } 2633 2633 2634 void owl_function_xterm_raise() { 2635 char buff[10]; 2636 2637 buff[0]=0x1b; 2638 buff[1]='['; 2639 buff[2]='5'; 2640 buff[3]='t'; 2641 write(fileno(stdout), buff, 4); 2642 } 2643 2644 void owl_function_xterm_deiconify() { 2645 char buff[10]; 2646 2647 buff[0]=0x1b; 2648 buff[1]='['; 2649 buff[2]='1'; 2650 buff[3]='t'; 2651 write(fileno(stdout), buff, 4); 2652 } 2634 void owl_function_xterm_raise(void) { 2635 printf("\033[5t"); 2636 fflush(stdout); 2637 } 2638 2639 void owl_function_xterm_deiconify(void) { 2640 printf("\033[1t"); 2641 fflush(stdout); 2642 }
Note: See TracChangeset
for help on using the changeset viewer.