aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/ao_utils.org
diff options
context:
space:
mode:
Diffstat (limited to 'org/ao_utils.org')
-rw-r--r--org/ao_utils.org12
1 files changed, 6 insertions, 6 deletions
diff --git a/org/ao_utils.org b/org/ao_utils.org
index 9f3bdb5..c4ead3f 100644
--- a/org/ao_utils.org
+++ b/org/ao_utils.org
@@ -3,10 +3,10 @@
#+EMAIL: ralph.amissah@gmail.com
#+STARTUP: indent
#+LANGUAGE: en
-#+OPTIONS: H:3 num:nil toc:t \n:nil @:t ::t |:t ^:nil -:t f:t *:t <:t
+#+OPTIONS: H:3 num:nil toc:t \n:nil @:t ::t |:t ^:nil _:nil -:t f:t *:t <:t
#+OPTIONS: TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc
#+OPTIONS: author:nil email:nil creator:nil timestamp:nil
-#+OPTIONS: ^:nil _:nil#+OPTIONS: ^:nil _:nil
+#+PROPERTY: header-args :padline no :exports none :noweb yes
#+EXPORT_SELECT_TAGS: export
#+EXPORT_EXCLUDE_TAGS: noexport
#+FILETAGS: :sdp:rel:ao:
@@ -16,7 +16,7 @@
[[./sdp.org][sdp]] [[./][org/]]
** set colors for terminal :colors:terminal:
#+name: ao_utils
-#+BEGIN_SRC d :exports none
+#+BEGIN_SRC d
string[string] scr_txt_color = [
"off" : "\033[0m",
"white" : "\033[37m",
@@ -89,21 +89,21 @@ string[string] scr_txt_marker = [
* code snippets, use as needed :code:snippet:debug:
** called from
-#+BEGIN_SRC d :tangle no :exports none
+#+BEGIN_SRC d :tangle no
string functionName = __FUNCTION__,
string file = __FILE__,
size_t line = __LINE__) {
writefln("Called from function %s at file %s, line %s",
functionName, file, line);
#+END_SRC :tangle no
-#+BEGIN_SRC d :exports none
+#+BEGIN_SRC d
writefln("Inside function %s at file %s, line %s",
__FUNCTION__, __FILE__, __LINE__);
#+END_SRC
* tangles :tangle:
** code structure: :ao_util.d:
#+name: tangle_ao_utils
-#+BEGIN_SRC d :tangle ../lib/sdp/ao_utils.d :padline no :exports none :noweb yes
+#+BEGIN_SRC d :tangle ../lib/sdp/ao_utils.d
/*
utils
ao_util.d