diff options
| author | Paul Eggert | 2015-05-28 00:06:14 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-05-28 00:22:03 -0700 |
| commit | dfc2ef11a84d33eab916ff87b8537f8e28c05c92 (patch) | |
| tree | b196ac609a67987d5e1e756860de51b4361c8bd2 /lisp/org | |
| parent | 0fd5e6593af620863dcf90dff5d04631458e24cd (diff) | |
| download | emacs-dfc2ef11a84d33eab916ff87b8537f8e28c05c92.tar.gz emacs-dfc2ef11a84d33eab916ff87b8537f8e28c05c92.zip | |
Fix minor quoting problems in doc strings
Most of these fixes involve escaping grave accents that are
actually intended to be grave accents, not left quotes.
(Bug#20385)
Diffstat (limited to 'lisp/org')
| -rw-r--r-- | lisp/org/ob-core.el | 2 | ||||
| -rw-r--r-- | lisp/org/org-agenda.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org/ob-core.el b/lisp/org/ob-core.el index fd144629838..f767a4eabe1 100644 --- a/lisp/org/ob-core.el +++ b/lisp/org/ob-core.el | |||
| @@ -2583,7 +2583,7 @@ block but are passed literally to the \"example-block\"." | |||
| 2583 | (defun org-babel-read (cell &optional inhibit-lisp-eval) | 2583 | (defun org-babel-read (cell &optional inhibit-lisp-eval) |
| 2584 | "Convert the string value of CELL to a number if appropriate. | 2584 | "Convert the string value of CELL to a number if appropriate. |
| 2585 | Otherwise if cell looks like lisp (meaning it starts with a | 2585 | Otherwise if cell looks like lisp (meaning it starts with a |
| 2586 | \"(\", \"'\", \"`\" or a \"[\") then read it as lisp, | 2586 | \"(\", \"'\", \"\\=`\" or a \"[\") then read it as lisp, |
| 2587 | otherwise return it unmodified as a string. Optional argument | 2587 | otherwise return it unmodified as a string. Optional argument |
| 2588 | NO-LISP-EVAL inhibits lisp evaluation for situations in which is | 2588 | NO-LISP-EVAL inhibits lisp evaluation for situations in which is |
| 2589 | it not appropriate." | 2589 | it not appropriate." |
diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el index 65696b21d71..3df9fb6d420 100644 --- a/lisp/org/org-agenda.el +++ b/lisp/org/org-agenda.el | |||
| @@ -5712,7 +5712,7 @@ This function is invoked if `org-agenda-todo-ignore-deadlines', | |||
| 5712 | (let ((calendar-date-style 'european) (european-calendar-style t)) | 5712 | (let ((calendar-date-style 'european) (european-calendar-style t)) |
| 5713 | (diary-date day month year mark)))) | 5713 | (diary-date day month year mark)))) |
| 5714 | 5714 | ||
| 5715 | ;; Define the` org-class' function | 5715 | ;; Define the `org-class' function |
| 5716 | (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks) | 5716 | (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks) |
| 5717 | "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS. | 5717 | "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS. |
| 5718 | DAYNAME is a number between 0 (Sunday) and 6 (Saturday). | 5718 | DAYNAME is a number between 0 (Sunday) and 6 (Saturday). |