diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-08-14 06:02:46 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-08-14 06:02:46 -0700 |
commit | eb05a5de9b195a5fa3d935e39470be203b50332a (patch) | |
tree | 9e64339e575e379078f014cb14a756a232ede86c | |
parent | e63c561a145103a94efbc49e7c6a1061dd8464f4 (diff) | |
download | txr-eb05a5de9b195a5fa3d935e39470be203b50332a.tar.gz txr-eb05a5de9b195a5fa3d935e39470be203b50332a.tar.bz2 txr-eb05a5de9b195a5fa3d935e39470be203b50332a.zip |
bugfix: seek-stream :from-end not working.
* stream.h (enum strm_whence): Fix strm_end and strm_start
being duplicate values; strm_end must map to SEEK_END.
-rw-r--r-- | stream.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ enum strm_whence { strm_start = SEEK_SET, strm_cur = SEEK_CUR, - strm_end = SEEK_SET + strm_end = SEEK_END }; enum indent_mode { |