diff options
-rw-r--r-- | lisp/acdw-modeline.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/acdw-modeline.el b/lisp/acdw-modeline.el index db20b5a..6131484 100644 --- a/lisp/acdw-modeline.el +++ b/lisp/acdw-modeline.el | |||
@@ -118,6 +118,6 @@ Uses `acdw-modeline/word-count-modes' to determine which function to use." | |||
118 | #'count-words)) | 118 | #'count-words)) |
119 | (min (if (region-active-p) (region-beginning) (point-min))) | 119 | (min (if (region-active-p) (region-beginning) (point-min))) |
120 | (max (if (region-active-p) (region-end) (point-max)))) | 120 | (max (if (region-active-p) (region-end) (point-max)))) |
121 | (format "%dW" (funcall fn min max))))) | 121 | (format " %dW" (funcall fn min max))))) |
122 | 122 | ||
123 | (provide 'acdw-modeline) | 123 | (provide 'acdw-modeline) |