summaryrefslogtreecommitdiff
path: root/blog.el
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-11-06 15:46:43 +0100
committerGuido Günther <agx@sigxcpu.org>2015-11-06 15:46:43 +0100
commitb5bcc322b78af39a7b422a1337f413e82cb93f84 (patch)
treeb8684105f3d94c9919732d4411b2b9e137d3696e /blog.el
parent564a7466ca3baa9d790c94b9c4b8dc7a655edf51 (diff)
Make it simple to create debian security tracker links
Diffstat (limited to 'blog.el')
-rw-r--r--blog.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/blog.el b/blog.el
index a8827ad..cf9f5d7 100644
--- a/blog.el
+++ b/blog.el
@@ -2,7 +2,7 @@
;(require 'markdown)
(defun blog-insert-cve-markdown-link ()
- "Read DSA number and create link to security tracker"
+ "Read CVE/DSA number and create link to security tracker"
(interactive)
(let* (
(bounds (or (and (markdown-use-region-p)
@@ -10,7 +10,7 @@
(markdown-bounds-of-thing-at-point 'symbol)))
(text (if bounds
(buffer-substring (car bounds) (cdr bounds))
- (read-string "CVE Number: ")))
+ (read-string "CVE/DSA Number: ")))
(url (concat "http://security-tracker.debian.org/tracker/" text))
)
(when bounds (delete-region (car bounds) (cdr bounds)))