unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [patch] abbrev.el (write-abbrev-file): Write table entries in alphabetical order by table name.
@ 2005-04-14 18:50 Eric Hanchrow
  0 siblings, 0 replies; only message in thread
From: Eric Hanchrow @ 2005-04-14 18:50 UTC (permalink / raw)



The motivation for this should be clear from the comment.

	* abbrev.el (write-abbrev-file): Write table entries in
       alphabetical order by table name.

--- abbrev.el	11 Apr 2005 11:13:44 -0700	1.39
+++ abbrev.el	14 Apr 2005 11:40:56 -0700	
@@ -221,7 +221,20 @@
   (let ((coding-system-for-write 'emacs-mule))
     (with-temp-file file
       (insert ";;-*-coding: emacs-mule;-*-\n")
-      (dolist (table abbrev-table-name-list)
+      (dolist (table 
+
+               ;; We sort the table in order to ease the automatic
+               ;; merging of different versions of the user's abbrevs
+               ;; file.  This is useful, for example, for when the
+               ;; user keeps their home directory in a revision
+               ;; control system, and is therefore keeping multiple
+               ;; slightly-differing copies loosely synchronized.
+               (sort (copy-list abbrev-table-name-list)
+                     (lambda (s1 s2)
+                       (string< (symbol-name s1)
+                                (symbol-name s2))))
+                                                   
+               )
 	(insert-abbrev-table-description table nil)))))
 \f
 (defun add-mode-abbrev (arg)

-- 
If you're trying to choose between two theories and one gives
you an excuse for being lazy, the other one is probably right.
        -- Paul Graham

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-04-14 18:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-04-14 18:50 [patch] abbrev.el (write-abbrev-file): Write table entries in alphabetical order by table name Eric Hanchrow

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).