Mercurial > hg > xemacs-beta
comparison src/callint.c @ 2:ac2d302a0011 r19-15b2
Import from CVS: tag r19-15b2
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:46:35 +0200 |
parents | 376386a54a3c |
children | 9ee227acff29 |
comparison
equal
deleted
inserted
replaced
1:c0c6a60d29db | 2:ac2d302a0011 |
---|---|
106 e -- Last mouse-button or misc-user event that invoked this command. | 106 e -- Last mouse-button or misc-user event that invoked this command. |
107 If used more than once, the Nth `e' returns the Nth such event. | 107 If used more than once, the Nth `e' returns the Nth such event. |
108 Does not do I/O. | 108 Does not do I/O. |
109 f -- Existing file name. | 109 f -- Existing file name. |
110 F -- Possibly nonexistent file name. | 110 F -- Possibly nonexistent file name. |
111 i -- Always nil, ignore. Use to skip arguments when interactive. | |
111 k -- Key sequence (a vector of events). | 112 k -- Key sequence (a vector of events). |
112 K -- Key sequence to be redefined (do not automatically down-case). | 113 K -- Key sequence to be redefined (do not automatically down-case). |
113 m -- Value of mark as number. Does not do I/O. | 114 m -- Value of mark as number. Does not do I/O. |
114 n -- Number read using minibuffer. | 115 n -- Number read using minibuffer. |
115 N -- Prefix arg converted to number, or if none, do like code `n'. | 116 N -- Prefix arg converted to number, or if none, do like code `n'. |
700 Qnil /* must-match */ | 701 Qnil /* must-match */ |
701 ); | 702 ); |
702 arg_from_tty = 1; | 703 arg_from_tty = 1; |
703 break; | 704 break; |
704 } | 705 } |
706 case 'i': /* Ignore: always nil. Use to skip arguments. */ | |
707 { | |
708 args[argnum] = Qnil; | |
709 break; | |
710 } | |
705 case 'k': /* Key sequence (vector of events) */ | 711 case 'k': /* Key sequence (vector of events) */ |
706 { | 712 { |
707 Lisp_Object tem = Fread_key_sequence (PROMPT (), Qnil, Qnil); | 713 Lisp_Object tem = Fread_key_sequence (PROMPT (), Qnil, Qnil); |
708 visargs[argnum] = Fkey_description (tem); | 714 visargs[argnum] = Fkey_description (tem); |
709 /* The following makes `describe-key' not work with | 715 /* The following makes `describe-key' not work with |