From 79e2142b6c9953ee1b02334348f330146a4a65a6 Mon Sep 17 00:00:00 2001 From: Nick Treleaven Date: Mon, 20 Oct 2008 14:48:21 +0000 Subject: [PATCH] Add description for -P option. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3131 ea778897-0a13-0410-b9d1-a72fbfd435f5 --- ChangeLog | 2 ++ src/main.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9a02fe20..f35e3ce8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,8 @@ command-line. Warn user when ignoring other command-line files when a project file is the first argument. + * src/main.c: + Add description for -P option. 2008-10-19 Enrico Tröger diff --git a/src/main.c b/src/main.c index a4754922..3665ff79 100644 --- a/src/main.c +++ b/src/main.c @@ -122,7 +122,7 @@ static GOptionEntry entries[] = { "debug", 'd', 0, G_OPTION_ARG_NONE, &debug_mode, N_("Runs in debug mode (means being verbose)"), NULL }, { "ft-names", 0, 0, G_OPTION_ARG_NONE, &ft_names, N_("Print internal filetype names"), NULL }, { "generate-tags", 'g', 0, G_OPTION_ARG_NONE, &generate_tags, N_("Generate global tags file (see documentation)"), NULL }, - { "no-preprocessing", 'P', 0, G_OPTION_ARG_NONE, &no_preprocessing, NULL, NULL }, + { "no-preprocessing", 'P', 0, G_OPTION_ARG_NONE, &no_preprocessing, N_("Don't preprocess C/C++ files when generating tags"), NULL }, { "generate-data-files", 0, G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &generate_datafiles, NULL, NULL }, #ifdef HAVE_SOCKET { "new-instance", 'i', 0, G_OPTION_ARG_NONE, &cl_options.new_instance, N_("Don't open files in a running instance, force opening a new instance"), NULL },