]> git.eshelyaron.com Git - esy-publish.git/commitdiff
Fix typo
authorEshel Yaron <me@eshelyaron.com>
Tue, 15 Apr 2025 06:30:13 +0000 (08:30 +0200)
committerEshel Yaron <me@eshelyaron.com>
Tue, 15 Apr 2025 06:30:13 +0000 (08:30 +0200)
esy-publish.el
source/posts/2023-11-17-completion-preview-in-emacs.org
source/posts/2024-11-27-emacs-aritrary-code-execution-and-how-to-avoid-it.org

index 7359654f3cb1fe578da250a06aaf7817460bdce4..694306ee599a1da4fe224f2f47fb37c92b0ef58b 100644 (file)
                 (list "assets"
                       :base-directory esy-publish-source-directory
                       :publishing-directory esy-publish-local-directory
-                      :base-extension "svg\\|ico\\|css\\|png"
+                      :base-extension "svg\\|ico\\|css\\|png\\|gif"
                       :publishing-function #'org-publish-attachment)
                 (list "sassets"
                       :base-directory esy-publish-assets-source-directory
                       :publishing-directory esy-publish-local-assets-directory
-                      :base-extension "svg\\|ico\\|css\\|png"
+                      :base-extension "svg\\|ico\\|css\\|png\\|gif"
                       :publishing-function #'org-publish-attachment)
                 (list "org"
                       :completion-function #'esy-publish--finalize
index 92bafbe5de11df6d3e92ff8a07e018fc471f40a3..207215d17bb33c79f77f0db130ea6ff478aae33a 100644 (file)
@@ -69,7 +69,7 @@ The second important question is "when exactly is the preview shown?"
 The answer is that it /may/ be shown after each command.  My initial
 implementation included a user-extensible hook that Completion Preview
 mode consulted with after each command to determine whether or not to
-show the preview, but that was [[https://debbugs.gnu.org/cgi/bugreport.cgi?bug=66948#68][dimmed]] "over-engineered" during the
+show the preview, but that was [[https://debbugs.gnu.org/cgi/bugreport.cgi?bug=66948#68][deemed]] "over-engineered" during the
 patch review, so currently we have two simple conditions that must
 hold for Completion Preview to show the preview:
 
index 0462e5cbc68b52ee62f2ec17b2f204d29ec8c03c..112ef5c3b3d510a3f6917c765999fa5fdc04d4b2 100644 (file)
@@ -28,7 +28,7 @@ working on countermeasures that will hopefully make their way into
 future Emacs versions.  This advisory is intended to help users of
 existing Emacs versions protect themselves.
 
-UPDATE: Mitigations are implemented in Emacs 30 (to be released soon).
+UPDATE: Mitigations are implemented in Emacs 30.
 
 * Update 2024-12-20
 
@@ -58,7 +58,8 @@ The Emacs maintainers have implemented a safety mechanism which
 disables Flymake and code completion induced macro-expansion in
 untrusted files.  This is already included in the latest Emacs 30
 "pretest" release, version 30.0.93.  See commits b5158bd1914,
-8b6c6cffd1f, b9dc337ea74 and 8a0c9c234f1 in emacs.git for details.
+8b6c6cffd1f, b9dc337ea74, 8a0c9c234f1 and 5485ea6aef9 in emacs.git for
+details.
 
 * Background