Function: semantic-idle-breadcrumbs--display-in-mode-line

semantic-idle-breadcrumbs--display-in-mode-line is a byte-compiled function defined in idle.el.gz.

Signature

(semantic-idle-breadcrumbs--display-in-mode-line TAG-LIST)

Documentation

Display the tags in TAG-LIST in the mode line of their buffer.

TODO THIS FUNCTION DOES NOT WORK YET.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/idle.el.gz
(defun semantic-idle-breadcrumbs--display-in-mode-line (tag-list)
  "Display the tags in TAG-LIST in the mode line of their buffer.
TODO THIS FUNCTION DOES NOT WORK YET."

  (error "This function does not work yet")

  (let ((width (- (nth 2 (window-edges))
		  (nth 0 (window-edges)))))
    (setq mode-line-format
	  (replace-regexp-in-string ;; see comment in
	   "\\(%\\)" "%\\1"         ;; `semantic-idle-breadcrumbs--display-in-header-line'
	   (semantic-idle-breadcrumbs--format-tag-list tag-list width))))

  (force-mode-line-update))