Function: time-add

time-add is a function defined in timefns.c.

Signature

(time-add A B)

Documentation

Return the sum of two time values A and B, as a time value.

See format-time-string for the various forms of a time value. For example, nil stands for the current time.

Probably introduced at or before Emacs version 25.1.

Aliases

org-time-add (obsolete since 9.6)

Source Code

// Defined in /usr/src/emacs/src/timefns.c
{
  return time_arith (a, b, false);
}