[geany/geany-plugins] b8e41b: Autoclose: Try make a string more specified

Frank Lanitz git-noreply at xxxxx
Thu Apr 2 12:54:49 UTC 2015


Branch:      refs/heads/master
Author:      Frank Lanitz <frank at frank.uvena.de>
Committer:   Frank Lanitz <frank at frank.uvena.de>
Date:        Thu, 02 Apr 2015 12:54:49 UTC
Commit:      b8e41ba5b2b3738ee807b8961de2401c78f3c4b6
             https://github.com/geany/geany-plugins/commit/b8e41ba5b2b3738ee807b8961de2401c78f3c4b6

Log Message:
-----------
Autoclose: Try make a string more specified


Modified Paths:
--------------
    autoclose/src/autoclose.c

Modified: autoclose/src/autoclose.c
6 lines changed, 3 insertions(+), 3 deletions(-)
===================================================================
@@ -621,7 +621,7 @@ struct_semicolon(
 	gchar           *chars_right,
 	gint             filetype)
 {
-	if (filetype_c_or_cpp(filetype) && 
+	if (filetype_c_or_cpp(filetype) &&
 	   (check_struct(sci, pos, "struct") || check_struct(sci, pos, "typedef struct")))
 	{
 		chars_right[1] = ';';
@@ -1051,8 +1051,8 @@ plugin_configure(GtkDialog *dialog)
 	WIDGET_CONF_BOOL(backquote, _("Backquote ` `"),
 		_("Auto-close backquote ` -> `|`"));
 	g_signal_connect(widget, "toggled", G_CALLBACK(ac_backquote_bashonly_cb), dialog);
-	WIDGET_CONF_BOOL(backquote_bashonly, _("\tOnly for Bash"),
-		_("Auto-close backquote only in Bash"));
+	WIDGET_CONF_BOOL(backquote_bashonly, _("\tOnly for Shell-scripts (Bash)"),
+		_("Auto-close backquote only in Shell-scripts like Bash"));
 
 	WIDGET_FRAME(_("Improve curly brackets completion"));
 	WIDGET_CONF_BOOL(make_indent_for_cbracket, _("Indent when enclosing"),



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Plugins-Commits mailing list