diff options
| author | Paul Eggert | 2015-09-01 06:21:25 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-09-01 06:23:21 -0700 |
| commit | a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce (patch) | |
| tree | 03058460c897b868eaf281bcf984a3a687667ae3 /src/image.c | |
| parent | 447e5890a81f098881aecc099852ace466ef5925 (diff) | |
| download | emacs-a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce.tar.gz emacs-a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce.zip | |
Docstring fixes re quotes in C code
Fix some docstring quoting problems, mostly by escaping apostrophe.
Diffstat (limited to 'src/image.c')
| -rw-r--r-- | src/image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/image.c b/src/image.c index 743d230ed3b..85cf801f6a9 100644 --- a/src/image.c +++ b/src/image.c | |||
| @@ -9752,7 +9752,7 @@ syms_of_image (void) | |||
| 9752 | defining the supported image types. */ | 9752 | defining the supported image types. */ |
| 9753 | DEFVAR_LISP ("image-types", Vimage_types, | 9753 | DEFVAR_LISP ("image-types", Vimage_types, |
| 9754 | doc: /* List of potentially supported image types. | 9754 | doc: /* List of potentially supported image types. |
| 9755 | Each element of the list is a symbol for an image type, like 'jpeg or 'png. | 9755 | Each element of the list is a symbol for an image type, like `jpeg' or `png'. |
| 9756 | To check whether it is really supported, use `image-type-available-p'. */); | 9756 | To check whether it is really supported, use `image-type-available-p'. */); |
| 9757 | Vimage_types = Qnil; | 9757 | Vimage_types = Qnil; |
| 9758 | 9758 | ||