X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/24ee55bfd4371e24a03db0fbd830ad5adac0ac4f..72c20d0be811966afccdb7551d3341d10d3be9a9:/lisp/imenu.el diff --git a/lisp/imenu.el b/lisp/imenu.el index 717ac63366..57db68626e 100644 --- a/lisp/imenu.el +++ b/lisp/imenu.el @@ -509,7 +509,7 @@ If REVERSE is non-nil then the beginning is 100 and the end is 0." (defun imenu--split (list n) "Split LIST into sublists of max length N. -Example (imenu--split '(1 2 3 4 5 6 7 8) 3)-> '((1 2 3) (4 5 6) (7 8)) +Example (imenu--split \\='(1 2 3 4 5 6 7 8) 3) => ((1 2 3) (4 5 6) (7 8)) The returned list DOES NOT share structure with LIST." (let ((remain list) (result '())