diff options
| -rw-r--r-- | lisp/emacs-lisp/assoc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/assoc.el b/lisp/emacs-lisp/assoc.el index 4a075c45932..c50606e7be2 100644 --- a/lisp/emacs-lisp/assoc.el +++ b/lisp/emacs-lisp/assoc.el | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | 23 | ||
| 24 | ;;; Code: | 24 | ;;; Code: |
| 25 | 25 | ||
| 26 | (defun asort (assoc-symbol key) | 26 | (defun asort (alist-symbol key) |
| 27 | "Move a specified key-value pair to the head of an alist. | 27 | "Move a specified key-value pair to the head of an alist. |
| 28 | The alist is referenced by ALIST-SYMBOL. Key-value pair to move to | 28 | The alist is referenced by ALIST-SYMBOL. Key-value pair to move to |
| 29 | head is one matching KEY. Returns the sorted list and doesn't affect | 29 | head is one matching KEY. Returns the sorted list and doesn't affect |