summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorGravatar Nicolas Petton2021-02-25 12:35:15 +0100
committerGravatar Nicolas Petton2021-02-25 12:35:15 +0100
commit0a80d806fe9279308df2dd4960b95c2a35273ed5 (patch)
tree7f3575693abef52a2ac03ec7553111b1d7f6f0a6
parentca401e48726116160ed360adcdaa16ba56f0b95c (diff)
downloadnroam-0a80d806fe9279308df2dd4960b95c2a35273ed5.tar.gz
nroam-0a80d806fe9279308df2dd4960b95c2a35273ed5.zip
* nroam.el (nroam--insert-backlinks-heading): Simplify
-rw-r--r--nroam.el8
1 files changed, 3 insertions, 5 deletions
diff --git a/nroam.el b/nroam.el
index 01ba132..5030345 100644
--- a/nroam.el
+++ b/nroam.el
@@ -210,11 +210,9 @@ Make the region inserted by BODY read-only, and marked with
(defun nroam--insert-backlinks-heading (count)
"Insert the heading for the backlinks section with a COUNT."
- (insert (if (= count 0)
- "* No linked reference\n"
- (format "* %s %s\n"
- count
- (nroam--pluralize count "linked reference")))))
+ (insert (format "* %s %s\n"
+ (if (= count 0) "No" count)
+ (nroam--pluralize count "linked reference"))))
(defun nroam--insert-backlink-group (group)
"Insert all backlinks in GROUP."