diff options
| -rw-r--r-- | lisp/jsonrpc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/jsonrpc.el b/lisp/jsonrpc.el index 808c1fdd147..ca2647971fd 100644 --- a/lisp/jsonrpc.el +++ b/lisp/jsonrpc.el | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | ;; Author: João Távora <joaotavora@gmail.com> | 5 | ;; Author: João Távora <joaotavora@gmail.com> |
| 6 | ;; Keywords: processes, languages, extensions | 6 | ;; Keywords: processes, languages, extensions |
| 7 | ;; Version: 1.0.26 | 7 | ;; Version: 1.0.27 |
| 8 | ;; Package-Requires: ((emacs "25.2")) | 8 | ;; Package-Requires: ((emacs "25.2")) |
| 9 | 9 | ||
| 10 | ;; This is a GNU ELPA :core package. Avoid functionality that is not | 10 | ;; This is a GNU ELPA :core package. Avoid functionality that is not |
| @@ -1109,7 +1109,7 @@ PREFIX to CONN's events buffer." | |||
| 1109 | (unless (eql max 0) | 1109 | (unless (eql max 0) |
| 1110 | (cl-loop initially (goto-char beg) | 1110 | (cl-loop initially (goto-char beg) |
| 1111 | do (forward-line) | 1111 | do (forward-line) |
| 1112 | when (bolp) | 1112 | while (bolp) |
| 1113 | for line = (buffer-substring | 1113 | for line = (buffer-substring |
| 1114 | (line-beginning-position 0) | 1114 | (line-beginning-position 0) |
| 1115 | (line-end-position 0)) | 1115 | (line-end-position 0)) |