[geany/geany] 0c0119: search: Fix the tooltip to mention Perl-like, not PCRE regular expressions

Colomban Wendling git-noreply at xxxxx
Wed Aug 10 00:49:52 UTC 2016


Branch:      refs/heads/master
Author:      Colomban Wendling <ban at herbesfolles.org>
Committer:   Colomban Wendling <ban at herbesfolles.org>
Date:        Wed, 10 Aug 2016 00:49:52 UTC
Commit:      0c01192a31f38c0472fe49f545bef5ba5592f1be
             https://github.com/geany/geany/commit/0c01192a31f38c0472fe49f545bef5ba5592f1be

Log Message:
-----------
search: Fix the tooltip to mention Perl-like, not PCRE regular expressions

Follow-up to #1168.
Closes #1170.


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

Modified: src/search.c
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -308,8 +308,8 @@ static GtkWidget *add_find_checkboxes(GtkDialog *dialog)
 	check_regexp = gtk_check_button_new_with_mnemonic(_("_Use regular expressions"));
 	ui_hookup_widget(dialog, check_regexp, "check_regexp");
 	gtk_button_set_focus_on_click(GTK_BUTTON(check_regexp), FALSE);
-	gtk_widget_set_tooltip_text(check_regexp, _("Use PCRE regular expressions. "
-		"For detailed information about using regular expressions, please read the documentation."));
+	gtk_widget_set_tooltip_text(check_regexp, _("Use Perl-like regular expressions. "
+		"For detailed information about using regular expressions, please refer to the manual."));
 	g_signal_connect(check_regexp, "toggled",
 		G_CALLBACK(on_find_replace_checkbutton_toggled), dialog);
 



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


More information about the Commits mailing list