diff options
| author | Yuuki Harano | 2021-11-13 16:41:29 +0900 |
|---|---|---|
| committer | Yuuki Harano | 2021-11-13 16:41:29 +0900 |
| commit | 3e20d50fc5a8fc94b571e140a696ccd65040e6c1 (patch) | |
| tree | bc8ae73c3e78ac755d257895f3c1b8a66c644618 /src/alloc.c | |
| parent | c31d3dacf7f153589b6e7a5f5204937c64e7fd24 (diff) | |
| download | emacs-3e20d50fc5a8fc94b571e140a696ccd65040e6c1.tar.gz emacs-3e20d50fc5a8fc94b571e140a696ccd65040e6c1.zip | |
Revert #if changes
I changed some "#ifdef"s to "#if defined"s by mistake, so I reverted them.
* src/alloc.c: Reverted.
(garbage_collect): Reverted.
* src/emacs.c (main): Reverted.
* src/image.c (xpm_load_image): Reverted.
(image_disable_image): Reverted.
(image_build_heuristic_mask): Reverted.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index 2d25f8205ae..9388cf1d08f 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -96,7 +96,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ | |||
| 96 | #include <unistd.h> | 96 | #include <unistd.h> |
| 97 | #include <fcntl.h> | 97 | #include <fcntl.h> |
| 98 | 98 | ||
| 99 | #if defined(USE_GTK) | 99 | #ifdef USE_GTK |
| 100 | # include "gtkutil.h" | 100 | # include "gtkutil.h" |
| 101 | #endif | 101 | #endif |
| 102 | #ifdef WINDOWSNT | 102 | #ifdef WINDOWSNT |
| @@ -6148,7 +6148,7 @@ garbage_collect (void) | |||
| 6148 | mark_pgtkterm(); | 6148 | mark_pgtkterm(); |
| 6149 | #endif | 6149 | #endif |
| 6150 | 6150 | ||
| 6151 | #if defined(USE_GTK) | 6151 | #ifdef USE_GTK |
| 6152 | xg_mark_data (); | 6152 | xg_mark_data (); |
| 6153 | #endif | 6153 | #endif |
| 6154 | 6154 | ||