summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwlemb <wlemb>2004-06-19 20:47:47 +0000
committerwlemb <wlemb>2004-06-19 20:47:47 +0000
commitb33b105dd0ae9b3fc7143ad9eed40adc13d4bc6c (patch)
treef8f2662c0640d4b7f12dd616419220ff96035268
parent36675db17496ce2a9929b8c075db018039ef7c31 (diff)
downloadgroff-b33b105dd0ae9b3fc7143ad9eed40adc13d4bc6c.tar.gz
* release of groffer 0.9.11
* groffer.sh: - To the search of the `--apropos-*' options, add man pages with a subsection in their apropos output.
-rw-r--r--contrib/groffer/ChangeLog12
-rw-r--r--contrib/groffer/groffer.sh22
2 files changed, 19 insertions, 15 deletions
diff --git a/contrib/groffer/ChangeLog b/contrib/groffer/ChangeLog
index c78b233c..df577162 100644
--- a/contrib/groffer/ChangeLog
+++ b/contrib/groffer/ChangeLog
@@ -1,3 +1,11 @@
+2004-06-15 Bernd Warken
+ ________________________________________________________________
+ * release of groffer 0.9.11
+
+ * groffer.sh:
+ - To the search of the `--apropos-*' options, add man pages with a
+ subsection in their apropos output.
+
2004-06-02 Bernd Warken
________________________________________________________________
* release of groffer 0.9.10
@@ -26,10 +34,6 @@
corresponding example.
- Update the information on $POSIXLY_CORRECT.
-2004-06-02 Werner Lemberg <wl@gnu.org>
-
- * groff.man: Protect (g)xditview with \% to avoid hyphenation.
-
2004-05-29 Bernd Warken
________________________________________________________________
* release of groffer 0.9.9
diff --git a/contrib/groffer/groffer.sh b/contrib/groffer/groffer.sh
index 11cb9807..d7124c0e 100644
--- a/contrib/groffer/groffer.sh
+++ b/contrib/groffer/groffer.sh
@@ -25,8 +25,8 @@
# Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
_PROGRAM_NAME='groffer';
-_PROGRAM_VERSION='0.9.10';
-_LAST_UPDATE='1 June 2004';
+_PROGRAM_VERSION='0.9.11';
+_LAST_UPDATE='15 June 2004';
########################################################################
@@ -3489,12 +3489,6 @@ main_parse_args()
--all)
_OPT_ALL="yes";
;;
- --ascii)
- list_append _ADDOPTS_GROFF '-mtty-char';
- if obj _mode is_empty; then
- _mode='text';
- fi;
- ;;
--apropos) # run `apropos'
apropos_run "$1";
_code="$?";
@@ -3502,23 +3496,29 @@ main_parse_args()
exit "${_code}";
;;
--apropos-data) # run `apropos' for data sections
- apropos_run "$1" | grep '^[^(]*([457])';
+ apropos_run "$1" | grep '^[^(]*([457][^)]*)';
_code="$?";
clean_up;
exit "${_code}";
;;
--apropos-devel) # run `apropos' for development sections
- apropos_run "$1" | grep '^[^(]*([239])';
+ apropos_run "$1" | grep '^[^(]*([239][^)]*)';
_code="$?";
clean_up;
exit "${_code}";
;;
--apropos-progs) # run `apropos' for program sections
- apropos_run "$1" | grep '^[^(]*([168])';
+ apropos_run "$1" | grep '^[^(]*([168][^)]*)';
_code="$?";
clean_up;
exit "${_code}";
;;
+ --ascii)
+ list_append _ADDOPTS_GROFF '-mtty-char';
+ if obj _mode is_empty; then
+ _mode='text';
+ fi;
+ ;;
--auto) # the default automatic mode
_mode='';
;;