summaryrefslogtreecommitdiff
path: root/bog.el
diff options
context:
space:
mode:
Diffstat (limited to 'bog.el')
-rw-r--r--bog.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/bog.el b/bog.el
index 266eac6..201457a 100644
--- a/bog.el
+++ b/bog.el
@@ -1189,7 +1189,7 @@ context fails."
"Move foward to next non-heading citekey.
With argument ARG, do it ARG times."
(interactive "p")
- (or arg (setq arg 1))
+ (setq arg (or arg 1))
(if (< arg 0)
(bog-previous-non-heading-citekey (- arg))
(with-syntax-table bog-citekey-syntax-table
@@ -1206,7 +1206,7 @@ With argument ARG, do it ARG times."
"Move backward to previous non-heading citekey.
With argument ARG, do it ARG times."
(interactive "p")
- (or arg (setq arg 1))
+ (setq arg (or arg 1))
(with-syntax-table bog-citekey-syntax-table
(let (case-fold-search)
(while (and (> arg 0)