Function: calendar-french-trim-feast

calendar-french-trim-feast is a byte-compiled function defined in cal-french.el.gz.

Signature

(calendar-french-trim-feast FEAST)

Documentation

Remove the article from the FEAST.

E.g. "du Raisin" -> "Raisin" or "de la Vertu" -> "Vertu".

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-french.el.gz
(defun calendar-french-trim-feast (feast)
  "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))
   ((equal (substring feast 0 5) "de l'")  (substring feast 5))
   ((equal (substring feast 0 4) "des ")   (substring feast 4))
   (t feast)))