Ivan Shmakov
2013-12-14 13:29:55 UTC
Since the commit made on 2013-11-29, Emacs' loadup.el
unconditionally loads the 'uniquify feature.
I wonder what's the proper way for disabling it (and are there
any implications of doing so)? As it seems, unload-feature
works, but perhaps there's any other way?
PS. The following code brought my buffer names back to their usual
format.
(dolist (buf (buffer-list))
(let ((name (buffer-name buf)))
(when (string-match "^\\(.*\\)|.*" name)
(let ((new (generate-new-buffer-name (match-string 1 name))))
(with-current-buffer buf
(rename-buffer new))))))
unconditionally loads the 'uniquify feature.
I wonder what's the proper way for disabling it (and are there
any implications of doing so)? As it seems, unload-feature
works, but perhaps there's any other way?
PS. The following code brought my buffer names back to their usual
format.
(dolist (buf (buffer-list))
(let ((name (buffer-name buf)))
(when (string-match "^\\(.*\\)|.*" name)
(let ((new (generate-new-buffer-name (match-string 1 name))))
(with-current-buffer buf
(rename-buffer new))))))
--
FSF associate member #7257
FSF associate member #7257