Revision f8a48affbb8829190fe3aa8a1092d5762fd921b1 authored by brian m. carlson on 11 October 2014, 23:37:34 UTC, committed by Junio C Hamano on 13 October 2014, 20:35:37 UTC
The documentation for git-imap-send uses block delimiters with
mismatched lengths, which Asciidoctor doesn't support.  As a result, the
page is misrendered.  Adjust the delimiters so that they are of the same
length.

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent c9a5172
Raw File
version.h
#ifndef VERSION_H
#define VERSION_H

extern const char git_version_string[];

const char *git_user_agent(void);
const char *git_user_agent_sanitized(void);

#endif /* VERSION_H */
back to top