diff options
| author | Lars Magne Ingebrigtsen | 2013-08-12 15:54:45 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2013-08-12 15:54:45 +0200 |
| commit | 8a44a184685092e2f39c9355467defde0b8b030c (patch) | |
| tree | b5ecedafe78e402b50b0d9a1494477935789e07b /src | |
| parent | 594a430782d12499543637915fd974483523f500 (diff) | |
| download | emacs-8a44a184685092e2f39c9355467defde0b8b030c.tar.gz emacs-8a44a184685092e2f39c9355467defde0b8b030c.zip | |
Add the zlib prefix to `decompress-gzipped-region'
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/decompress.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 44af7c6b385..3a8fcfe7e9c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-08-12 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * decompress.c (Fzlib_decompress_gzipped_region): Rename to | ||
| 4 | include the zlib prefix. | ||
| 5 | |||
| 1 | 2013-08-12 Eli Zaretskii <eliz@gnu.org> | 6 | 2013-08-12 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * decompress.c [WINDOWSNT]: Include windows.h and w32.h. | 8 | * decompress.c [WINDOWSNT]: Include windows.h and w32.h. |
diff --git a/src/decompress.c b/src/decompress.c index af8435b2fd0..3605d446e5a 100644 --- a/src/decompress.c +++ b/src/decompress.c | |||
| @@ -119,8 +119,8 @@ DEFUN ("zlib-available-p", Fzlib_available_p, Szlib_available_p, 0, 0, 0, | |||
| 119 | #endif | 119 | #endif |
| 120 | } | 120 | } |
| 121 | 121 | ||
| 122 | DEFUN ("decompress-gzipped-region", Fdecompress_gzipped_region, | 122 | DEFUN ("zlib-decompress-gzipped-region", Fzlib_decompress_gzipped_region, |
| 123 | Sdecompress_gzipped_region, | 123 | Szlib_decompress_gzipped_region, |
| 124 | 2, 2, 0, | 124 | 2, 2, 0, |
| 125 | doc: /* Decompress a gzip-compressed region. | 125 | doc: /* Decompress a gzip-compressed region. |
| 126 | Replace the text in the region by the decompressed data. | 126 | Replace the text in the region by the decompressed data. |
| @@ -210,7 +210,7 @@ void | |||
| 210 | syms_of_decompress (void) | 210 | syms_of_decompress (void) |
| 211 | { | 211 | { |
| 212 | DEFSYM (Qzlib_dll, "zlib"); | 212 | DEFSYM (Qzlib_dll, "zlib"); |
| 213 | defsubr (&Sdecompress_gzipped_region); | 213 | defsubr (&Szlib_decompress_gzipped_region); |
| 214 | defsubr (&Szlib_available_p); | 214 | defsubr (&Szlib_available_p); |
| 215 | } | 215 | } |
| 216 | 216 | ||