emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/markdown-mode dce3fc6 2/2: Merge pull request #628 from ni


From: ELPA Syncer
Subject: [nongnu] elpa/markdown-mode dce3fc6 2/2: Merge pull request #628 from nigredo-tori/fix-custom-booleans
Date: Sun, 25 Jul 2021 23:57:17 -0400 (EDT)

branch: elpa/markdown-mode
commit dce3fc602d004c3b063b78d617b81ddda90a44a8
Merge: f3c4fd9 90058e5
Author: Shohei YOSHIDA <syohex@gmail.com>
Commit: GitHub <noreply@github.com>

    Merge pull request #628 from nigredo-tori/fix-custom-booleans
    
    Fix broken :type for two custom values
---
 CHANGES.md       | 1 +
 markdown-mode.el | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/CHANGES.md b/CHANGES.md
index 90b95d6..e68b148 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -49,6 +49,7 @@
     -   Fix `markdown-follow-thing-at-point` failing on subdir search 
[GH-590][]
     -   Fix `markdown-table-backward-cell' so it always goes back a single cell
     -   Fix 'markdown-table-align' to detect delimiters surrounded by spaces
+    -   Fix customization for `markdown-mouse-follow-link` and 
`markdown-table-align-p`
 
   [gh-290]: https://github.com/jrblevin/markdown-mode/issues/290
   [gh-311]: https://github.com/jrblevin/markdown-mode/issues/311
diff --git a/markdown-mode.el b/markdown-mode.el
index 0c77a40..72f984e 100644
--- a/markdown-mode.el
+++ b/markdown-mode.el
@@ -617,14 +617,14 @@ requires Emacs to be built with ImageMagick support."
   "Non-nil means mouse on a link will follow the link.
 This variable must be set before loading markdown-mode."
   :group 'markdown
-  :type 'bool
+  :type 'boolean
   :safe 'booleanp
   :package-version '(markdown-mode . "2.5"))
 
 (defcustom markdown-table-align-p t
   "Non-nil means that table is aligned after table operation."
   :group 'markdown
-  :type 'bool
+  :type 'boolean
   :safe 'booleanp
   :package-version '(markdown-mode . "2.5"))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]