The output of buffer-list is a list of buffer objects Functions dealing with a specific buffer will typically accept a buffer object as an argument: (buffer-name (car (buffer-list))) The syntax is explained here: M-: (info "(elisp) Printed Representation") RET I can't imagine why you'd want to modify all buffers (remember this includes the minibuffer, possibly some internal-use buffers, various others like *Help*, *Messages*, and maybe some read-only buffers), but you could use the following as the basis: (let ((buffers (buffer-list))) (while (car buffers) (set-buffer (car buffers)) (let ((contents (save-restriction (widen) (buffer-string)))) do something with contents ) (setq buffers (cdr buffers)))).
The output of buffer-list is a list of buffer objects. Functions dealing with a specific buffer will typically accept a buffer object as an argument: (buffer-name (car (buffer-list))) The # syntax is explained here: M-: (info "(elisp) Printed Representation") RET I can't imagine why you'd want to modify all buffers (remember this includes the minibuffer, possibly some internal-use buffers, various others like *Help*, *Messages*, and maybe some read-only buffers), but you could use the following as the basis: (let ((buffers (buffer-list))) (while (car buffers) (set-buffer (car buffers)) (let ((contents (save-restriction (widen) (buffer-string)))) do something with contents ) (setq buffers (cdr buffers)))).
Get the contents of the buffers using the buffer name obtained in step 1. Change the contents and overwrite the buffer. The (buffer-list) fn output is very confusing.
I don't understand what does # < and * stands for.
I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.