comparison src/editfns.c @ 90667:dbe3f29e61d6

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 505-522) - Update from CVS - Merge from gnus--rel--5.10 - Update from CVS: etc/TUTORIAL.cn: Updated. - Merge from erc--emacs--22 * gnus--rel--5.10 (patch 164-167) - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-137
author Miles Bader <miles@gnu.org>
date Tue, 21 Nov 2006 08:56:38 +0000
parents a1a25ac6c88a 5229e2ae0b0e
children 95d0cdf160ea
comparison
equal deleted inserted replaced
90666:00d54c8fa693 90667:dbe3f29e61d6
3301 3301
3302 /* Allocated length of that buffer. */ 3302 /* Allocated length of that buffer. */
3303 static int message_length; 3303 static int message_length;
3304 3304
3305 DEFUN ("message", Fmessage, Smessage, 1, MANY, 0, 3305 DEFUN ("message", Fmessage, Smessage, 1, MANY, 0,
3306 doc: /* Print a one-line message at the bottom of the screen. 3306 doc: /* Display a message at the bottom of the screen.
3307 The message also goes into the `*Messages*' buffer. 3307 The message also goes into the `*Messages*' buffer.
3308 \(In keyboard macros, that's all it does.) 3308 \(In keyboard macros, that's all it does.)
3309 Return the message.
3309 3310
3310 The first argument is a format control string, and the rest are data 3311 The first argument is a format control string, and the rest are data
3311 to be formatted under control of the string. See `format' for details. 3312 to be formatted under control of the string. See `format' for details.
3312 3313
3313 Note: Use (message "%s" VALUE) to print the value of expressions and 3314 Note: Use (message "%s" VALUE) to print the value of expressions and