Function: cc-imenu-objc-remove-white-space
cc-imenu-objc-remove-white-space is a byte-compiled function defined
in cc-menus.el.gz.
Signature
(cc-imenu-objc-remove-white-space STR)
Documentation
Remove all spaces and tabs from STR.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-menus.el.gz
(defun cc-imenu-objc-remove-white-space (str)
"Remove all spaces and tabs from STR."
(let ((return "")
(p 0)
(max (length str))
char)
(while (< p max)
(setq char (aref str p))
(setq p (1+ p))
(if (or (= char ?\ ) (= char ?\t))
()
(setq return (concat return (char-to-string char)))))
return))