diff options
| -rw-r--r-- | lisp/calendar/icalendar.el | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lisp/calendar/icalendar.el b/lisp/calendar/icalendar.el index 63d09dc4c24..1186ced3fb0 100644 --- a/lisp/calendar/icalendar.el +++ b/lisp/calendar/icalendar.el | |||
| @@ -344,12 +344,8 @@ mix of different line endings." | |||
| 344 | (while (re-search-forward "\r\n\\|\n\r" nil t) | 344 | (while (re-search-forward "\r\n\\|\n\r" nil t) |
| 345 | (replace-match "\n" nil nil)))) | 345 | (replace-match "\n" nil nil)))) |
| 346 | 346 | ||
| 347 | (defsubst icalendar--rris (regexp rep string &optional fixedcase literal) | 347 | (define-obsolete-function-alias 'icalendar--rris |
| 348 | "Replace regular expression in string. | 348 | 'replace-regexp-in-string "27.1") |
| 349 | Pass arguments REGEXP REP STRING FIXEDCASE LITERAL to | ||
| 350 | `replace-regexp-in-string'." | ||
| 351 | (declare (obsolete replace-regexp-in-string "27.1")) | ||
| 352 | (replace-regexp-in-string regexp rep string fixedcase literal)) | ||
| 353 | 349 | ||
| 354 | (defun icalendar--read-element (invalue inparams) | 350 | (defun icalendar--read-element (invalue inparams) |
| 355 | "Recursively read the next iCalendar element in the current buffer. | 351 | "Recursively read the next iCalendar element in the current buffer. |