From: <dm...@dm...> - 2002-05-05 16:03:34
|
* dm...@dm... [2002-05-05 16:31:42] > (if emacs-xemacs > (defun dme:replace-regexp-in-string (regexp rep string &optional fixedcase literal subexp start) > (replace-in-string string regexp rep literal)) > (defalias 'dme:replace-regexp-in-string 'replace-regexp-in-string)) kensanata pointed out that this should be: (if (featurep 'xemacs) (defun dme:replace-regexp-in-string (regexp rep string &optional fixedcase literal subexp start) (replace-in-string string regexp rep literal)) (defalias 'dme:replace-regexp-in-string 'replace-regexp-in-string)) |