From 845209399c5e3e8138b5361f7fd406c7a22acbad Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Fri, 6 Jan 2017 17:26:36 -0500 Subject: put remaining defcustoms into the rust-mode group --- rust-mode.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rust-mode.el b/rust-mode.el index 60a81f1..346e172 100644 --- a/rust-mode.el +++ b/rust-mode.el @@ -187,11 +187,13 @@ function or trait. When nil, where will be aligned with fn or trait." (defcustom rust-format-on-save nil "Format future rust buffers before saving using rustfmt." :type 'boolean - :safe #'booleanp) + :safe #'booleanp + :group 'rust-mode) (defcustom rust-rustfmt-bin "rustfmt" "Path to rustfmt executable." - :type 'string) + :type 'string + :group 'rust-mode) (defface rust-unsafe-face '((t :inherit font-lock-warning-face)) -- cgit v1.2.3 From 4935090c3fe89a419a38b4f2194d1fea49e2a763 Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Fri, 6 Jan 2017 17:27:11 -0500 Subject: convert http links into https links --- rust-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust-mode.el b/rust-mode.el index 346e172..1877234 100644 --- a/rust-mode.el +++ b/rust-mode.el @@ -146,7 +146,7 @@ (defgroup rust-mode nil "Support for Rust code." - :link '(url-link "http://www.rust-lang.org/") + :link '(url-link "https://www.rust-lang.org/") :group 'languages) (defcustom rust-indent-offset 4 @@ -172,7 +172,7 @@ function or trait. When nil, where will be aligned with fn or trait." "Format string to use when submitting code to the playpen" :type 'string :group 'rust-mode) -(defcustom rust-shortener-url-format "http://is.gd/create.php?format=simple&url=%s" +(defcustom rust-shortener-url-format "https://is.gd/create.php?format=simple&url=%s" "Format string to use for creating the shortened link of a playpen submission" :type 'string :group 'rust-mode) -- cgit v1.2.3