diff 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
line wrap: on
line diff
--- a/src/callint.c	Mon Aug 13 08:45:53 2007 +0200
+++ b/src/callint.c	Mon Aug 13 08:46:35 2007 +0200
@@ -108,6 +108,7 @@
      Does not do I/O.
 f -- Existing file name.
 F -- Possibly nonexistent file name.
+i -- Always nil, ignore.  Use to skip arguments when interactive.
 k -- Key sequence (a vector of events).
 K -- Key sequence to be redefined (do not automatically down-case).
 m -- Value of mark as number.  Does not do I/O.
@@ -702,6 +703,11 @@
 	      arg_from_tty = 1;
 	      break;
 	    }
+	  case 'i':		/* Ignore: always nil. Use to skip arguments. */
+            {
+              args[argnum] = Qnil;
+              break;
+            }
 	  case 'k':		/* Key sequence (vector of events) */
 	    {
 	      Lisp_Object tem = Fread_key_sequence (PROMPT (), Qnil, Qnil);