aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Francoise2006-08-11 14:11:24 +0000
committerRomain Francoise2006-08-11 14:11:24 +0000
commit08eedb79230d76e2faa005e8c343f744d0489a33 (patch)
treeac2d8f4a5d4b1fd03fa7ddd6e7e51929eb2ac330
parentb3302d9b0af367b9ef4e7f6663d5cb8f58725173 (diff)
downloademacs-08eedb79230d76e2faa005e8c343f744d0489a33.tar.gz
emacs-08eedb79230d76e2faa005e8c343f744d0489a33.zip
Fix formatting/indentation.
-rw-r--r--lisp/textmodes/dns-mode.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/textmodes/dns-mode.el b/lisp/textmodes/dns-mode.el
index 8ee69f03d7b..21fe137118f 100644
--- a/lisp/textmodes/dns-mode.el
+++ b/lisp/textmodes/dns-mode.el
@@ -216,12 +216,12 @@ This function is run from `before-save-hook'."
216 dns-mode-soa-auto-increment-serial 216 dns-mode-soa-auto-increment-serial
217 (or (eq dns-mode-soa-auto-increment-serial t) 217 (or (eq dns-mode-soa-auto-increment-serial t)
218 (y-or-n-p "Increment SOA serial? "))) 218 (y-or-n-p "Increment SOA serial? ")))
219 ;; If `dns-mode-soa-increment-serial' signals 219 ;; If `dns-mode-soa-increment-serial' signals an error saving will
220 ;; an error saving will fail but that probably means that the 220 ;; fail but that probably means that the serial should be fixed to
221 ;; serial should be fixed to comply with the RFC anyway! -rfr 221 ;; comply with the RFC anyway! -rfr
222 (progn (dns-mode-soa-increment-serial) 222 (progn (dns-mode-soa-increment-serial)
223 ;; We return nil in case this is used in write-contents-functions. 223 ;; We return nil in case this is used in write-contents-functions.
224 nil))) 224 nil)))
225 225
226;;;###autoload(add-to-list 'auto-mode-alist '("\\.soa\\'" . dns-mode)) 226;;;###autoload(add-to-list 'auto-mode-alist '("\\.soa\\'" . dns-mode))
227 227