emacs.rst
changeset 415 3ae537fcc132
parent 382 1f499471d603
child 454 56dce8c7f298
equal deleted inserted replaced
412:9617dc568eaf 415:3ae537fcc132
    42 
    42 
    43 When your ini has a bug, or when you load external files that cause
    43 When your ini has a bug, or when you load external files that cause
    44 errors, the bug is often hard to find, because the Emacs Lisp reader does not
    44 errors, the bug is often hard to find, because the Emacs Lisp reader does not
    45 know about line numbers and files - it just knows an error happened, and
    45 know about line numbers and files - it just knows an error happened, and
    46 that's it.
    46 that's it.
       
    47 
       
    48 *** Check if bug in ini file.
       
    49 
       
    50 First run Emacs without loading anything:
       
    51 
       
    52   $ emacs --no-init-file --no-site-file
       
    53 
       
    54 If bug not reproduced bug lies in ini files!
    47 
    55 
    48 *** Binary Search.
    56 *** Binary Search.
    49 
    57 
    50 Select half of the file in a region, and M-x eval-region. Depending on whether
    58 Select half of the file in a region, and M-x eval-region. Depending on whether
    51 that causes the error or not, split this half or the other half again, and
    59 that causes the error or not, split this half or the other half again, and