diff options
Diffstat (limited to 'lisp/erc')
| -rw-r--r-- | lisp/erc/erc-backend.el | 2 | ||||
| -rw-r--r-- | lisp/erc/erc-goodies.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/erc/erc-backend.el b/lisp/erc/erc-backend.el index 2854cde19cc..210830a2b49 100644 --- a/lisp/erc/erc-backend.el +++ b/lisp/erc/erc-backend.el | |||
| @@ -1285,7 +1285,7 @@ add things to `%s' instead." | |||
| 1285 | (pcase-let ((`(,nick ,login ,host) | 1285 | (pcase-let ((`(,nick ,login ,host) |
| 1286 | (erc-parse-user (erc-response.sender parsed)))) | 1286 | (erc-parse-user (erc-response.sender parsed)))) |
| 1287 | ;; strip the stupid combined JOIN facility (IRC 2.9) | 1287 | ;; strip the stupid combined JOIN facility (IRC 2.9) |
| 1288 | (if (string-match "^\\(.*\\)?\^g.*$" chnl) | 1288 | (if (string-match "^\\(.*\\)\^g.*$" chnl) |
| 1289 | (setq chnl (match-string 1 chnl))) | 1289 | (setq chnl (match-string 1 chnl))) |
| 1290 | (save-excursion | 1290 | (save-excursion |
| 1291 | (let* ((str (cond | 1291 | (let* ((str (cond |
diff --git a/lisp/erc/erc-goodies.el b/lisp/erc/erc-goodies.el index 117b6783b8d..884c594b9ed 100644 --- a/lisp/erc/erc-goodies.el +++ b/lisp/erc/erc-goodies.el | |||
| @@ -548,7 +548,7 @@ channel that has weird people talking in morse to each other. | |||
| 548 | 548 | ||
| 549 | See also `unmorse-region'." | 549 | See also `unmorse-region'." |
| 550 | (goto-char (point-min)) | 550 | (goto-char (point-min)) |
| 551 | (when (re-search-forward "[.-]+\\([.-]*/? *\\)+[.-]+/?" nil t) | 551 | (when (re-search-forward "[.-]+[./ -]*[.-]/?" nil t) |
| 552 | (save-restriction | 552 | (save-restriction |
| 553 | (narrow-to-region (match-beginning 0) (match-end 0)) | 553 | (narrow-to-region (match-beginning 0) (match-end 0)) |
| 554 | ;; Turn " / " into " " | 554 | ;; Turn " / " into " " |