Function: icalendar-match-geo-coordinates-value

icalendar-match-geo-coordinates-value is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-match-geo-coordinates-value S)

Documentation

Match string S against rx icalendar-geo-coordinates.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-type ical:geo-coordinates nil ; don't add to ical:value-types
  "Type for global positions.

This is not a type defined by RFC5545; it is defined here to
facilitate parsing the `icalendar-geo' property.  When printed, it
is represented as a pair of `icalendar-float' values separated by
a semicolon, like LATITUDE;LONGITUDE.  When read, it is a dotted
pair of Elisp floats (LATITUDE . LONGITUDE)."
  '(satisfies ical:geo-coordinates-p)
  (seq ical:float ";" ical:float)
  :reader ical:read-geo-coordinates
  :printer ical:print-geo-coordinates)