Function: ielm--expand-ellipsis

ielm--expand-ellipsis is a byte-compiled function defined in ielm.el.gz.

Signature

(ielm--expand-ellipsis ORIG-FUN BEG &rest ARGS)

Source Code

;; Defined in /usr/src/emacs/lisp/ielm.el.gz
(defun ielm--expand-ellipsis (orig-fun beg &rest args)
  (let ((end (copy-marker (apply orig-fun beg args) t)))
    (funcall pp-default-function beg end)
    end))