1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

Fix some errors in the documentation and other minor issues (#42)

Somewhat notable changes in this commit:
- The 'set +r' bugfix (re: 74b41621) is now documented in the
  changelog.
- Missing options have been added to the synopsis section of the
  ksh man page.
- The minor formatting fix from https://github.com/ksh-community/ksh/pull/5
  has been applied to the ksh man page.
- A few fixes from 5e747cfb
  have been applied to the ksh man page.
- The man page fixes from https://github.com/att/ast/pull/353
  have been applied, being:
  - An addition to document the behavior of 'set -H'.
  - A fix for the cd section appending rksh93.
  - A fix for some options being indented too far.
  - Removal of a duplicate section documenting '-D'.
  - Reordering the options for 'set' in alphabetical order.
  - A minor fix for the documentation of 'ksh -i'.
This commit is contained in:
Johnothan King 2020-06-25 08:21:40 -07:00 committed by Martijn Dekker
parent 43d9fbac1f
commit d41ec674c7
13 changed files with 54 additions and 48 deletions

7
NEWS
View file

@ -45,8 +45,8 @@ Any uppercase BUG_* names are modernish shell bug IDs.
- A two decade old bug that caused 'whence -a' to base the path of
tracked aliases on the user's current working directory has been
fixed. Now the real path to the tracked aliases is shown when '-a'
is passed to the whence command.
fixed. Now the real path to tracked aliases is shown when '-a' is
passed to the whence command.
2020-06-17:
@ -120,6 +120,9 @@ Any uppercase BUG_* names are modernish shell bug IDs.
shell's hash table. This fix applies to the hash utility and when the
PATH is reset manually.
- 'set +r' is no longer able to unset the restricted option. This change
makes the behavior of 'set +r' identical to 'set +o restricted'.
2020-06-09:
- The 'unalias' builtin will now return a non-zero status if it tries