diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/calc/calccomp.el | 2 | ||||
| -rw-r--r-- | lisp/woman.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calc/calccomp.el b/lisp/calc/calccomp.el index 51ea8e7b7a3..2f1c95b7668 100644 --- a/lisp/calc/calccomp.el +++ b/lisp/calc/calccomp.el | |||
| @@ -86,7 +86,7 @@ | |||
| 86 | (setq sn (math-to-underscores sn))) | 86 | (setq sn (math-to-underscores sn))) |
| 87 | sn))) | 87 | sn))) |
| 88 | 88 | ||
| 89 | ;;; Give multiplication precendence when composing to avoid | 89 | ;;; Give multiplication precedence when composing to avoid |
| 90 | ;;; writing a*(b c) instead of a b c | 90 | ;;; writing a*(b c) instead of a b c |
| 91 | (defun math-compose-expr (a prec &optional div) | 91 | (defun math-compose-expr (a prec &optional div) |
| 92 | (let ((calc-multiplication-has-precedence t) | 92 | (let ((calc-multiplication-has-precedence t) |
diff --git a/lisp/woman.el b/lisp/woman.el index 5933d593aa5..c8cc7ea6766 100644 --- a/lisp/woman.el +++ b/lisp/woman.el | |||
| @@ -2531,7 +2531,7 @@ REQUEST is the invoking directive without the leading dot." | |||
| 2531 | (cond | 2531 | (cond |
| 2532 | ;; ((looking-at "[no]") (setq c t)) ; accept n(roff) and o(dd page) | 2532 | ;; ((looking-at "[no]") (setq c t)) ; accept n(roff) and o(dd page) |
| 2533 | ;; ((looking-at "[te]") (setq c nil)) ; reject t(roff) and e(ven page) | 2533 | ;; ((looking-at "[te]") (setq c nil)) ; reject t(roff) and e(ven page) |
| 2534 | ;; Per groff ".if v" is recognised as false (it means -Tversatec). | 2534 | ;; Per groff ".if v" is recognized as false (it means -Tversatec). |
| 2535 | ((looking-at "[ntoev]") | 2535 | ((looking-at "[ntoev]") |
| 2536 | (setq c (memq (following-char) woman-if-conditions-true))) | 2536 | (setq c (memq (following-char) woman-if-conditions-true))) |
| 2537 | ;; Unrecognized letter so reject: | 2537 | ;; Unrecognized letter so reject: |