aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/info.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 38c077a5417..8b8447a7b6b 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -2622,7 +2622,7 @@ the variable `Info-file-list-for-emacs'."
2622 (let ((n 0)) 2622 (let ((n 0))
2623 (while (re-search-forward "^\\* +\\([^:\t\n]*\\):" nil t) 2623 (while (re-search-forward "^\\* +\\([^:\t\n]*\\):" nil t)
2624 (setq n (1+ n)) 2624 (setq n (1+ n))
2625 (if (memq n '(5 9)) ; visual aids to help with 1-9 keys 2625 (if (zerop (% n 3)) ; visual aids to help with 1-9 keys
2626 (put-text-property (match-beginning 0) 2626 (put-text-property (match-beginning 0)
2627 (1+ (match-beginning 0)) 2627 (1+ (match-beginning 0))
2628 'face 'info-menu-5)) 2628 'face 'info-menu-5))