diff options
| author | Paul Eggert | 2014-06-24 01:10:48 -0700 |
|---|---|---|
| committer | Paul Eggert | 2014-06-24 01:10:48 -0700 |
| commit | 40f5d4b76087eb5808ea228fc490b86cb9d85235 (patch) | |
| tree | 0214650f2d1d1712a494319aebbf1977db2eac50 /src/image.c | |
| parent | 7967f7d1d44a1c8e1b077fa186d43a86c72f5d95 (diff) | |
| download | emacs-40f5d4b76087eb5808ea228fc490b86cb9d85235.tar.gz emacs-40f5d4b76087eb5808ea228fc490b86cb9d85235.zip | |
Be more consistent about the 'Qfoo' naming convention.
* image.c (Fimagemagick_types):
* lisp.h (lisp_h_CHECK_TYPE, CHECK_TYPE, CHECK_ARRAY):
* process.c (Fmake_network_process):
Rename C local identifier 'Qfoo to avoid giving the false
impression that it stands for the symbol 'foo'.
Diffstat (limited to 'src/image.c')
| -rw-r--r-- | src/image.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/image.c b/src/image.c index f8c2402bfc4..b6d1f81ca06 100644 --- a/src/image.c +++ b/src/image.c | |||
| @@ -8549,7 +8549,6 @@ and `imagemagick-types-inhibit'. */) | |||
| 8549 | ExceptionInfo ex; | 8549 | ExceptionInfo ex; |
| 8550 | char **imtypes; | 8550 | char **imtypes; |
| 8551 | size_t i; | 8551 | size_t i; |
| 8552 | Lisp_Object Qimagemagicktype; | ||
| 8553 | 8552 | ||
| 8554 | GetExceptionInfo(&ex); | 8553 | GetExceptionInfo(&ex); |
| 8555 | imtypes = GetMagickList ("*", &numf, &ex); | 8554 | imtypes = GetMagickList ("*", &numf, &ex); |
| @@ -8557,8 +8556,8 @@ and `imagemagick-types-inhibit'. */) | |||
| 8557 | 8556 | ||
| 8558 | for (i = 0; i < numf; i++) | 8557 | for (i = 0; i < numf; i++) |
| 8559 | { | 8558 | { |
| 8560 | Qimagemagicktype = intern (imtypes[i]); | 8559 | Lisp_Object imagemagicktype = intern (imtypes[i]); |
| 8561 | typelist = Fcons (Qimagemagicktype, typelist); | 8560 | typelist = Fcons (imagemagicktype, typelist); |
| 8562 | imtypes[i] = MagickRelinquishMemory (imtypes[i]); | 8561 | imtypes[i] = MagickRelinquishMemory (imtypes[i]); |
| 8563 | } | 8562 | } |
| 8564 | 8563 | ||