diff options
author | Eli Zaretskii <eliz@gnu.org> | 2021-07-23 22:46:28 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-07-23 22:46:28 +0300 |
commit | 26ff27714ce753faf6a3aab773f71493949b7112 (patch) | |
tree | e8779623afc23f21047d61eb87fc0aeba69a060c | |
parent | 570832256061a70caf8b0892d3fb92c36fe28988 (diff) | |
download | emacs-26ff27714ce753faf6a3aab773f71493949b7112.tar.gz emacs-26ff27714ce753faf6a3aab773f71493949b7112.tar.bz2 emacs-26ff27714ce753faf6a3aab773f71493949b7112.zip |
; * lisp/calendar/cal-french.el (calendar-french-trim-feast): Doc fix.
-rw-r--r-- | lisp/calendar/cal-french.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calendar/cal-french.el b/lisp/calendar/cal-french.el index cc18a2a5d8e..1789f16445f 100644 --- a/lisp/calendar/cal-french.el +++ b/lisp/calendar/cal-french.el @@ -215,8 +215,8 @@ calendar-french-special-days-array) (defun calendar-french-trim-feast (feast) - "Remove the article from the feast, e.g. \"du Raisin\" -> \"Raisin\" -or \"de la Vertu\" -> \"Vertu\"" + "Remove the article from the FEAST. +E.g. \"du Raisin\" -> \"Raisin\" or \"de la Vertu\" -> \"Vertu\"." (cond ((equal (substring feast 0 3) "du ") (substring feast 3)) ((equal (substring feast 0 6) "de la ") (substring feast 6)) |