What do elisp expression (1+ (buffer-size)) and (+ 1 (buffer-size)) mean?
12:42 16 May 2016

I'm very very new in elisp and just started learning it. I have seen the following expressions in the document:

(1+ (buffer-size))
(+ 1 (buffer-size))

What do they mean? As I know elisp use prefix notation, so the second one should be correct one. But both of them can be executed without any errors. The first one is from the documentation of point-max function.

Thanks.

emacs lisp expression prefix