From 1fd54bf8e0fdda87d2a3fe9d3d9b4651f03435c1 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Wed, 23 Apr 2014 10:06:43 +0200 Subject: [PATCH] Fix typos * org.el (org-get-agenda-file-buffer): Fix docstring. * ox-icalendar.el (org-icalendar-use-deadline): Fix typo in docstring. --- lisp/org.el | 5 +++-- lisp/ox-icalendar.el | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 36c3dbbc6..0d02f9fc3 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -18158,8 +18158,9 @@ Optional argument FILE means use this file instead of the current." (t (user-error "Abort")))))) (defun org-get-agenda-file-buffer (file) - "Get a buffer visiting FILE. If the buffer needs to be created, add -it to the list of buffers which might be released later." + "Get an agenda buffer visiting FILE. +If the buffer needs to be created, add it to the list of buffers +which might be released later." (let ((buf (org-find-base-buffer-visiting file))) (if buf buf ; just return it diff --git a/lisp/ox-icalendar.el b/lisp/ox-icalendar.el index 6f86250e0..3571c4ce0 100644 --- a/lisp/ox-icalendar.el +++ b/lisp/ox-icalendar.el @@ -85,10 +85,11 @@ keyword." (defcustom org-icalendar-use-deadline '(event-if-not-todo todo-due) "Contexts where iCalendar export should use a deadline time stamp. -This is a list with several symbols in it. Valid symbol are: +This is a list with possibly several symbols in it. Valid symbols are: + `event-if-todo' Deadlines in TODO entries become calendar events. `event-if-not-todo' Deadlines in non-TODO entries become calendar events. -`todo-due' Use deadlines in TODO entries as due-dates" +`todo-due' Use deadlines in TODO entries as due-dates." :group 'org-export-icalendar :type '(set :greedy t (const :tag "Deadlines in non-TODO entries become events" -- 2.11.4.GIT