BUTLAST ======= syntax: (butlast <list> [<n>]) This function makes a copy of the list, which contains all elements except the last one. Optionally without the last n-elements! example: >(butlast '(1 2 3) 2) (1)