Kaydet (Commit) 73e24fa1 authored tarafından Enrico Tröger's avatar Enrico Tröger

Display also the style of the current position in the status bar when debug mode is enabled.

No need to make the debugging strings translatable in the status bar.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2972 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 5dde7906
2008-09-18 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* src/ui_utils.c:
Display also the style of the current position in the status bar
when debug mode is enabled.
No need to make the debugging strings translatable in the status bar.
2008-09-18 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* src/plugins.c:
......
......@@ -211,7 +211,9 @@ void ui_update_statusbar(GeanyDocument *doc, gint pos)
#ifdef GEANY_DEBUG
g_string_append(stats_str, sp);
g_string_append_printf(stats_str, _("pos: %d"), pos);
g_string_append_printf(stats_str, "pos: %d", pos);
g_string_append(stats_str, sp);
g_string_append_printf(stats_str, "style: %d", sci_get_style_at(doc->editor->sci, pos));
#endif
/* can be overridden by status messages */
......
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