projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6a3a729
)
Omit no-longer-needed SEEK_END workaround
author
Paul Eggert
<eggert@cs.ucla.edu>
Sun, 26 Feb 2023 01:13:00 +0000
(17:13 -0800)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Sun, 26 Feb 2023 01:13:29 +0000
(17:13 -0800)
* lib-src/ebrowse.c (SEEK_END): Remove; no longer needed
on any supported SunOS version.
lib-src/ebrowse.c
patch
|
blob
|
history
diff --git
a/lib-src/ebrowse.c
b/lib-src/ebrowse.c
index 469e90d04bb61ce470d20ad0051fcaecb79f9d1b..371fa6c938bd05817d4efc11bc47979d2d3850a6 100644
(file)
--- a/
lib-src/ebrowse.c
+++ b/
lib-src/ebrowse.c
@@
-31,11
+31,6
@@
along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#include <min-max.h>
#include <unlocked-io.h>
-/* The SunOS compiler doesn't have SEEK_END. */
-#ifndef SEEK_END
-#define SEEK_END 2
-#endif
-
/* Files are read in chunks of this number of bytes. */
enum { READ_CHUNK_SIZE = 100 * 1024 };