Variable: diary-icalendar-location-regexp
diary-icalendar-location-regexp is a customizable variable defined in
diary-icalendar.el.gz.
Value
"^[[:space:]]+Location:[[:space:]]*\\(?1:.+\\)"
Documentation
Regular expression to match location of an event.
The location value should be matched by group 1. The default regexp matches lines like:
Location: Some place
This variable was added, or its default value changed, in Emacs 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/diary-icalendar.el.gz
(defcustom di:location-regexp
(rx line-start
(one-or-more space)
"Location:"
(zero-or-more space)
(group-n 1 (one-or-more not-newline)))
"Regular expression to match location of an event.
The location value should be matched by group 1. The default regexp
matches lines like:
Location: Some place"
:version "31.1"
:type '(regexp))