Lines Matching defs:message

87      See log message of r1659867 and the svn_ra_get_commit_editor3
194 const char *message; /* the message. */
195 const char *message_encoding; /* the locale/encoding of the message. */
223 _("Log message contains a zero byte"));
225 lmb->message = opt_state->filedata->data;
229 lmb->message = opt_state->message;
267 /* If there was no tmpfile left, or there is no log message baton,
277 around, and add message about its presence to the commit error
287 _("Your commit message was left in "
340 * Since we're adding freebsd-specific tokens to the log message,
415 svn_stringbuf_t *message = NULL;
421 /* Set default message. */
468 if (lmb->message)
470 svn_string_t *log_msg_str = svn_string_create(lmb->message, pool);
475 _("Error normalizing log message to internal format"));
493 while (! message)
495 /* We still don't have a valid commit message. Use $EDITOR to
497 return a UTF-8'ized log message. */
551 /* Use the external edit to get a log message. */
566 _("Cannot invoke editor to get log message "
579 (err, _("Could not use external editor to fetch log message; "
581 "or using the --message (-m) or --file (-F) options"));
586 message = svn_stringbuf_create_from_string(msg_string, pool);
589 if (message)
590 truncate_buffer_at_prefix(&message->len, message->data,
593 * Since we're adding freebsd-specific tokens to the log message,
597 if (message)
598 cleanmsg(&message->len, message->data);
600 if (message)
602 /* We did get message, now check if it is anything more than just
606 for (len = 0; len < message->len; len++)
610 if (! svn_ctype_isspace(message->data[len]))
613 if (len == message->len)
614 message = NULL;
617 if (! message)
622 _("\nLog message unchanged or not specified\n"
630 message. */
639 message, which will cause us to exit the loop. We
645 message = svn_stringbuf_create_empty(pool);
649 continue on the NULL message. */
654 *log_msg = message ? message->data : NULL;