diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-08-08 17:48:10 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-08-08 18:18:51 +0200 |
commit | 0283d1c4e586d0d9496f5ebb1302731142b7dafc (patch) | |
tree | 6f0eb8b8b12376b3b4bc2cdf2e0e6c7239df76cb /lisp/mh-e | |
parent | f886a1d77236ead94b218cc7139f0a52db3311b3 (diff) | |
download | emacs-0283d1c4e586d0d9496f5ebb1302731142b7dafc.tar.gz emacs-0283d1c4e586d0d9496f5ebb1302731142b7dafc.tar.bz2 emacs-0283d1c4e586d0d9496f5ebb1302731142b7dafc.zip |
; Delete stale comment in mh-utils.el
* lisp/mh-e/mh-utils.el (mh-normalize-folder-name): Remove stale and
incorrect comment.
Diffstat (limited to 'lisp/mh-e')
-rw-r--r-- | lisp/mh-e/mh-utils.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/mh-e/mh-utils.el b/lisp/mh-e/mh-utils.el index bf2d3c71db0..dd662f35522 100644 --- a/lisp/mh-e/mh-utils.el +++ b/lisp/mh-e/mh-utils.el @@ -445,10 +445,8 @@ no effect." (setq folder (format "%s/%s/" mh-current-folder-name (substring folder 1)))) ;; XXX: Purge empty strings from the list that split-string - ;; returns. In XEmacs, (split-string "+foo/" "/") returns - ;; ("+foo" "") while in GNU Emacs it returns ("+foo"). In the - ;; code it is assumed that the components list has no empty - ;; strings. + ;; returns. In the code it is assumed that the components list + ;; has no empty strings. (let ((components (delete "" (split-string folder "/"))) (result ())) ;; Remove .. and . from the pathname. |