diff options
author | bde <bde@FreeBSD.org> | 1998-01-16 14:33:47 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-01-16 14:33:47 +0000 |
commit | 6e4ebaa163f65a90fb9b89ee4e940b2960b921ac (patch) | |
tree | 70356a89d855ff2aa361b1eccd45753ff71f23b6 /lib/libedit | |
parent | 368be21f4e19a71e194474733019eaee707a0e33 (diff) | |
download | FreeBSD-src-6e4ebaa163f65a90fb9b89ee4e940b2960b921ac.zip FreeBSD-src-6e4ebaa163f65a90fb9b89ee4e940b2960b921ac.tar.gz |
Fixed wrong prototype for history().
Don't (mis)use .Fd outside of the synopsis.
Diffstat (limited to 'lib/libedit')
-rw-r--r-- | lib/libedit/editline.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libedit/editline.3 b/lib/libedit/editline.3 index fc39973..bb706ae 100644 --- a/lib/libedit/editline.3 +++ b/lib/libedit/editline.3 @@ -87,8 +87,8 @@ .Fn history_init .Ft void .Fn history_end "History *h" -.Ft HistEvent * -.Fn history "History h" "int op" "..." +.Ft const HistEvent * +.Fn history "History *h" "int op" "..." .Sh DESCRIPTION The .Nm @@ -529,4 +529,4 @@ should not modify the supplied .Va argv[0] . .Pp The tokenization functions are not publically defined in -.Fd <histedit.h> +.Li <histedit.h> . |