Function: srecode-strip-fieldname

srecode-strip-fieldname is a byte-compiled function defined in getset.el.gz.

Signature

(srecode-strip-fieldname NAME)

Documentation

Strip the fieldname NAME of polish notation things.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/getset.el.gz
(defun srecode-strip-fieldname (name)
  "Strip the fieldname NAME of polish notation things."
  (cond ((string-match "[a-z]\\([A-Z]\\w+\\)" name)
	 (substring name (match-beginning 1)))
	;; Add more rules here.
	(t
	 name)))