Kaydet (Commit) 5f519877 authored tarafından Enrico Tröger's avatar Enrico Tröger

Display SVN revision number in version information if available.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2965 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst ab3c9a4f
......@@ -9,6 +9,8 @@
API changes:
Rename sci_can_copy() into sci_has_selection().
Rename sci_find_bracematch() into sci_find_matching_brace().
* src/main.c:
Display SVN revision number in version information if available.
2008-09-17 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
......
......@@ -759,8 +759,9 @@ gint main(gint argc, gchar **argv)
}
#endif
geany_debug("Geany %s, GTK+ %u.%u.%u, GLib %u.%u.%u",
geany_debug("Geany %s%s, GTK+ %u.%u.%u, GLib %u.%u.%u",
VERSION,
(utils_str_equal(REVISION, "-1")) ? "" : " svn >= " REVISION,
gtk_major_version, gtk_minor_version, gtk_micro_version,
glib_major_version, glib_minor_version, glib_micro_version);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment