All right. In Common Lisp there are effectively two types of variables: the ones you use all the time, which are lexically bound, and "special" variables, which are dynamically bound. "Special" variables are created with defvar, defparameter, or a declaration. The *earmuffs* are a convention that exists to remind Lisp programmers that a variable is special. Here are some examples:
(defvar b 3)
(defun add-to-b (x)
(+ x b))
(add-to-b 1)
=> 4
(let ((b 4))
(list (add-to-b 1) b))
=> (5 4)
(let ((a 3))
(defun add-to-a (x)
(+ x a)))
(add-to-a 1)
=> 4
(let ((a 4))
(list (add-to-a 1) a))
=> (4 4)
As you can see, changing the value of a special variable in a let makes the value change "trickle down" to all of the function calls in that let, while value changes of a regular, lexically-bound variable don't get passed down, In fact, lexically bound variables are looked up by moving up the scopes that are located where the function wan defined, while special variables are looked up by moving up the scopes where the function was called. The *earmuffs* are useful to stop programmers from accidentally rebinding a special variable, because they make special variables look different.