diff options
| author | Juanma Barranquero | 2006-02-16 11:32:43 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2006-02-16 11:32:43 +0000 |
| commit | 598d751d7c089bb7959782a4ca262930f27c8dd1 (patch) | |
| tree | b3c3a0358115c3c31dd11d724a9f8ef92348ffee /lisp | |
| parent | fc0f755fab9c900ebfcb549bc01d69a6ee6b611b (diff) | |
| download | emacs-598d751d7c089bb7959782a4ca262930f27c8dd1.tar.gz emacs-598d751d7c089bb7959782a4ca262930f27c8dd1.zip | |
(icalendar--get-event-property, icalendar--get-event-property-attributes):
Fix typos in docstrings.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/calendar/icalendar.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/calendar/icalendar.el b/lisp/calendar/icalendar.el index e1d513ce680..b900d4c57f3 100644 --- a/lisp/calendar/icalendar.el +++ b/lisp/calendar/icalendar.el | |||
| @@ -293,7 +293,7 @@ it finds" | |||
| 293 | ;; (car (cddr event))) | 293 | ;; (car (cddr event))) |
| 294 | 294 | ||
| 295 | (defun icalendar--get-event-property (event prop) | 295 | (defun icalendar--get-event-property (event prop) |
| 296 | "For the given EVENT return the value of the first occurence of PROP." | 296 | "For the given EVENT return the value of the first occurrence of PROP." |
| 297 | (catch 'found | 297 | (catch 'found |
| 298 | (let ((props (car (cddr event))) pp) | 298 | (let ((props (car (cddr event))) pp) |
| 299 | (while props | 299 | (while props |
| @@ -304,7 +304,7 @@ it finds" | |||
| 304 | nil)) | 304 | nil)) |
| 305 | 305 | ||
| 306 | (defun icalendar--get-event-property-attributes (event prop) | 306 | (defun icalendar--get-event-property-attributes (event prop) |
| 307 | "For the given EVENT return attributes of the first occurence of PROP." | 307 | "For the given EVENT return attributes of the first occurrence of PROP." |
| 308 | (catch 'found | 308 | (catch 'found |
| 309 | (let ((props (car (cddr event))) pp) | 309 | (let ((props (car (cddr event))) pp) |
| 310 | (while props | 310 | (while props |
| @@ -705,7 +705,7 @@ would be \"pm\"." | |||
| 705 | "Export diary file to iCalendar format. | 705 | "Export diary file to iCalendar format. |
| 706 | All diary entries in the file DIARY-FILENAME are converted to iCalendar | 706 | All diary entries in the file DIARY-FILENAME are converted to iCalendar |
| 707 | format. The result is appended to the file ICAL-FILENAME." | 707 | format. The result is appended to the file ICAL-FILENAME." |
| 708 | (interactive "FExport diary data from file: | 708 | (interactive "FExport diary data from file: |
| 709 | Finto iCalendar file: ") | 709 | Finto iCalendar file: ") |
| 710 | (save-current-buffer | 710 | (save-current-buffer |
| 711 | (set-buffer (find-file diary-filename)) | 711 | (set-buffer (find-file diary-filename)) |
| @@ -1449,8 +1449,8 @@ Argument ICAL-FILENAME output iCalendar file. | |||
| 1449 | Argument DIARY-FILENAME input `diary-file'. | 1449 | Argument DIARY-FILENAME input `diary-file'. |
| 1450 | Optional argument NON-MARKING determines whether events are created as | 1450 | Optional argument NON-MARKING determines whether events are created as |
| 1451 | non-marking or not." | 1451 | non-marking or not." |
| 1452 | (interactive "fImport iCalendar data from file: | 1452 | (interactive "fImport iCalendar data from file: |
| 1453 | Finto diary file: | 1453 | Finto diary file: |
| 1454 | p") | 1454 | p") |
| 1455 | ;; clean up the diary file | 1455 | ;; clean up the diary file |
| 1456 | (save-current-buffer | 1456 | (save-current-buffer |