Guest User

Untitled

a guest
Dec 15th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. (defun auto-new-line()
  2. (interactive)
  3. (move-to-column 0)
  4. (insert ?n) ;; This, along with the previous line moves to column 0 in the first line and inserts a beginning new line to separate the part numbers with their descriptions from the other part number/description combinations.
  5. (move-to-column 18) ;; In this case the part numbers are 18 characters wide.
  6. (insert ?n)
  7. (next-line)
  8. (auto-new-line())
Add Comment
Please, Sign In to add comment