diff options
| author | Po Lu | 2024-06-10 21:56:56 +0800 |
|---|---|---|
| committer | Po Lu | 2024-06-10 21:56:56 +0800 |
| commit | 8a55f4d0b06c96c95a2a2a7eb4a9a7fedb105e70 (patch) | |
| tree | 97c28d56547ddbe15fb6cce906f7a3d972968ed9 | |
| parent | 485b01429f1ed54aae617a6fff1d4371d2247beb (diff) | |
| download | emacs-8a55f4d0b06c96c95a2a2a7eb4a9a7fedb105e70.tar.gz emacs-8a55f4d0b06c96c95a2a2a7eb4a9a7fedb105e70.zip | |
Correct documentation build warnings and errors with Texinfo 4.13
* doc/emacs/custom.texi (Init Rebinding): Avoid @U command.
* doc/emacs/dired.texi (Image-Dired): EXIF, PNG and JPEG are
acronyms.
| -rw-r--r-- | doc/emacs/custom.texi | 4 | ||||
| -rw-r--r-- | doc/emacs/dired.texi | 19 |
2 files changed, 12 insertions, 11 deletions
diff --git a/doc/emacs/custom.texi b/doc/emacs/custom.texi index deac2c6c0ff..21e7e6be98b 100644 --- a/doc/emacs/custom.texi +++ b/doc/emacs/custom.texi | |||
| @@ -1988,10 +1988,10 @@ sequences. For example, to bind @kbd{C-c h} to the string | |||
| 1988 | @end example | 1988 | @end example |
| 1989 | 1989 | ||
| 1990 | Non-@acronym{ASCII} characters can be specified directly in the | 1990 | Non-@acronym{ASCII} characters can be specified directly in the |
| 1991 | string. To bind to e.g. @samp{ol@U{00E1}}, use: | 1991 | string. To bind to e.g. @samp{olá}, use: |
| 1992 | 1992 | ||
| 1993 | @example | 1993 | @example |
| 1994 | (keymap-global-set "C-c h" (key-description "ol@U{00E1}")) | 1994 | (keymap-global-set "C-c h" (key-description "olá")) |
| 1995 | @end example | 1995 | @end example |
| 1996 | 1996 | ||
| 1997 | However, be aware that language and coding systems may cause problems | 1997 | However, be aware that language and coding systems may cause problems |
diff --git a/doc/emacs/dired.texi b/doc/emacs/dired.texi index 720d27ab3bb..c251a6dc2be 100644 --- a/doc/emacs/dired.texi +++ b/doc/emacs/dired.texi | |||
| @@ -1689,7 +1689,7 @@ thumbnails, controlled by the value of the option | |||
| 1689 | @vindex image-dired-dir | 1689 | @vindex image-dired-dir |
| 1690 | @vindex image-dired-thumb-naming | 1690 | @vindex image-dired-thumb-naming |
| 1691 | @item image-dired | 1691 | @item image-dired |
| 1692 | This method stores thumbnails as @sc{JPEG} images in a single directory | 1692 | This method stores thumbnails as JPEG images in a single directory |
| 1693 | specified by the variable @code{image-dired-dir}. This is the default. | 1693 | specified by the variable @code{image-dired-dir}. This is the default. |
| 1694 | The names of the thumbnail files are in this case constructed according | 1694 | The names of the thumbnail files are in this case constructed according |
| 1695 | to the value of @code{image-dired-thumb-naming}. | 1695 | to the value of @code{image-dired-thumb-naming}. |
| @@ -1699,13 +1699,14 @@ to the value of @code{image-dired-thumb-naming}. | |||
| 1699 | @itemx standard-xx-large | 1699 | @itemx standard-xx-large |
| 1700 | These methods, mandated by the | 1700 | These methods, mandated by the |
| 1701 | @url{https://specifications.freedesktop.org/thumbnail-spec/thumbnail-spec-latest.html, | 1701 | @url{https://specifications.freedesktop.org/thumbnail-spec/thumbnail-spec-latest.html, |
| 1702 | Thumbnail Managing Standard}, store thumbnails as @sc{PNG} images under | 1702 | Thumbnail Managing Standard}, store thumbnails as @acronym{PNG} images |
| 1703 | the @file{thumbnails} subdirectory of the directory specified by the | 1703 | under the @file{thumbnails} subdirectory of the directory specified by |
| 1704 | environment variable @env{XDG_CACHE_HOME} (which defaults to | 1704 | the environment variable @env{XDG_CACHE_HOME} (which defaults to |
| 1705 | @file{~/.cache}). | 1705 | @file{~/.cache}). |
| 1706 | @item per-directory | 1706 | @item per-directory |
| 1707 | This method stores the thumbnails of each directory in a | 1707 | This method stores the thumbnails of each directory in a |
| 1708 | @file{.image-dired} subdirectory of that directory, as @sc{JPEG} images. | 1708 | @file{.image-dired} subdirectory of that directory, as @acronym{jpeg} |
| 1709 | images. | ||
| 1709 | @end table | 1710 | @end table |
| 1710 | 1711 | ||
| 1711 | @vindex image-dired-thumb-size | 1712 | @vindex image-dired-thumb-size |
| @@ -1777,10 +1778,10 @@ a comment from Dired (@code{image-dired-dired-comment-files}). | |||
| 1777 | 1778 | ||
| 1778 | @findex image-dired-thumbnail-set-image-description | 1779 | @findex image-dired-thumbnail-set-image-description |
| 1779 | If you have the @command{exiftool} program installed, you can set the | 1780 | If you have the @command{exiftool} program installed, you can set the |
| 1780 | @sc{EXIF} @samp{ImageDescription} tag of an image file by invoking the | 1781 | @acronym{EXIF} @samp{ImageDescription} tag of an image file by invoking |
| 1781 | @code{image-dired-thumbnail-set-image-description} command with point at | 1782 | the @code{image-dired-thumbnail-set-image-description} command with |
| 1782 | the thumbnail of the image file. This command prompts for the | 1783 | point at the thumbnail of the image file. This command prompts for the |
| 1783 | description of the image, and adds the @sc{EXIF} tag to it. | 1784 | description of the image, and adds the @acronym{EXIF} tag to it. |
| 1784 | 1785 | ||
| 1785 | @vindex image-dired-thumb-visible-marks | 1786 | @vindex image-dired-thumb-visible-marks |
| 1786 | Files that are marked in Dired will also be marked in Image-Dired if | 1787 | Files that are marked in Dired will also be marked in Image-Dired if |